Data::Range::Compare::Stream::Result::Base - Result Objects Base class
package SomeClass; use base qw(Data::Range::Compare::Stream::Result::Base); use overload 'bool'=>\&boolean, '""'=>\&to_string, Fallback=>1;
This package is the Base class for all Result classes. Result classes are defined as any objects returned by an iterator object instance while has_next is true.
Object Constructor. Returns blessed anonymous array containing all arguments passed to the constructor
Returns the common range object.
Returns a string defined by:
join ' - ',$obj->[0],$obj->[1];
Returns the value of $obj->to_string
Returns True
When called in boolean context returns the value of $obj->boolean.
Data::Range::Compare::Stream::Cookbook
Michael Shipper
As of version 0.001 the Project has been moved to Source-Forge.net
Data Range Compare https://sourceforge.net/projects/data-range-comp/
Copyright 2011 Michael Shipper. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.