Number-Tolerant
view release on metacpan or search on metacpan
lib/Number/Tolerant/Union.pm view on Meta::CPAN
#pod The arguments to C<new> are a list of numbers or tolerances to be unioned.
#pod
#pod Intersecting ranges are not converted into a single range, but this may change
#pod in the future. (For example, the union of "5 to 10" and "7 to 12" is not "5 to
#pod 12.")
#pod
#pod =cut
sub new {
my $class = shift;
bless { options => [ @_ ] } => $class;
}
#pod =head2 options
#pod
#pod This method will return a list of all the acceptable options for the union.
#pod
#pod =cut
sub options {
my $self = shift;
( run in 0.230 second using v1.01-cache-2.11-cpan-65fba6d93b7 )