NAME
Data::Object::Role::Numeric - Numeric Object Role for Perl 5
VERSION
version 0.55
SYNOPSIS
use Data::Object::Role::Numeric;
DESCRIPTION
Data::Object::Role::Numeric provides routines for operating on Perl 5 numeric data.
METHODS
downto
# given 5
my $array = $numeric->downto(1); # [5,4,3,2,1]
The downto method returns a ...
eq
# given 1
$numeric->eq(0); # 0
The eq method returns true if the argument provided is equal to the value represented by the object. This method returns a number value.
ge
# given 1
$numeric->ge(0); # 1
The ge method returns true if the argument provided is greater-than or equal-to the value represented by the object. This method returns a Data::Object::Number object.
gt
# given 1
$numeric->gt(0); # 1
The gt method returns true if the argument provided is greater-than the value represented by the object. This method returns a number value.
le
# given 1
$numeric->le(0); # 0
The le method returns true if the argument provided is less-than or equal-to the value represented by the object. This method returns a Data::Object::Number object.
lt
# given 1
$numeric->lt(0); # 0
The lt method returns true if the argument provided is less-than the value represented by the object. This method returns a number value.
ne
# given 1
$numeric->ne(0); # 1
The ne method returns true if the argument provided is not equal to the value represented by the object. This method returns a number value.
to
# given 5
my $object = $numeric->to(-5); # [5,4,3,2,1,0,-1,2,3,4,5]
The to method returns an array reference containing integer increasing or decreasing values to and including the limit in ascending or descending order based on the value of the floating-point object. This method returns an array value.
upto
# given 23
my $object = $numeric->upto(25); # [23,24,25]
The upto method returns an array reference containing integer increasing values up to and including the limit. This method returns an array value.
SEE ALSO
AUTHOR
Al Newkirk <anewkirk@ana.io>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Al Newkirk.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.