The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MooseX::Types::Common::Numeric - Commonly used numeric types

SYNOPSIS

    use MooseX::Types::Common::Numeric qw/PositiveInt/;
    has count => (is => 'rw', isa => PositiveInt);

    ...
    #this will fail
    $object->count(-33);

DESCRIPTION

A set of commonly-used numeric type constraints that do not ship with Moose by default.

  • PositiveNum

  • PositiveOrZeroNum

  • PositiveInt

  • PositiveOrZeroInt

  • NegativeNum

  • NegativeOrZeroNum

  • NegativeInt

  • NegativeOrZeroInt

  • SingleDigit

SEE ALSO

AUTHORS

Please see:: MooseX::Types::Common