convert to Dist::Zilla
[gitmo/MooseX-Types-Common.git] / lib / MooseX / Types / Common / Numeric.pm
index 7744cfc..ae3e57e 100644 (file)
@@ -1,23 +1,38 @@
 package MooseX::Types::Common::Numeric;
+# ABSTRACT: Commonly used numeric types
 
 use strict;
 use warnings;
 
-our $VERSION = '0.001001';
-
 use MooseX::Types -declare => [
-  qw(PositiveNum PositiveInt NegativeNum NegativeInt SingleDigit)
+  qw(PositiveNum PositiveOrZeroNum
+     PositiveInt PositiveOrZeroInt
+     NegativeNum NegativeOrZeroNum
+     NegativeInt NegativeOrZeroInt
+     SingleDigit)
 ];
 
 use MooseX::Types::Moose qw/Num Int/;
 
 subtype PositiveNum,
   as Num,
-  where { $_ >= 0 },
+  where { $_ > 0 },
   message { "Must be a positive number" },
     ( $Moose::VERSION >= 2.0200
         ? inline_as {
             $_[0]->parent()->_inline_check( $_[1] ) . ' && '
+                . qq{ ($_[1] > 0) };
+        }
+        : ()
+    );
+
+subtype PositiveOrZeroNum,
+  as Num,
+  where { $_ >= 0 },
+  message { "Must be a number greater than or equal to zero" },
+    ( $Moose::VERSION >= 2.0200
+        ? inline_as {
+            $_[0]->parent()->_inline_check( $_[1] ) . ' && '
                 . qq{ ($_[1] >= 0) };
         }
         : ()
@@ -25,11 +40,23 @@ subtype PositiveNum,
 
 subtype PositiveInt,
   as Int,
-  where { $_ >= 0 },
+  where { $_ > 0 },
   message { "Must be a positive integer" },
     ( $Moose::VERSION >= 2.0200
         ? inline_as {
             $_[0]->parent()->_inline_check( $_[1] ) . ' && '
+                . qq{ ($_[1] > 0) };
+        }
+        : ()
+    );
+
+subtype PositiveOrZeroInt,
+  as Int,
+  where { $_ >= 0 },
+  message { "Must be an integer greater than or equal to zero" },
+    ( $Moose::VERSION >= 2.0200
+        ? inline_as {
+            $_[0]->parent()->_inline_check( $_[1] ) . ' && '
                 . qq{ ($_[1] >= 0) };
         }
         : ()
@@ -37,11 +64,23 @@ subtype PositiveInt,
 
 subtype NegativeNum,
   as Num,
-  where { $_ <= 0 },
+  where { $_ < 0 },
   message { "Must be a negative number" },
     ( $Moose::VERSION >= 2.0200
         ? inline_as {
             $_[0]->parent()->_inline_check( $_[1] ) . ' && '
+                . qq{ ($_[1] < 0) };
+        }
+        : ()
+    );
+
+subtype NegativeOrZeroNum,
+  as Num,
+  where { $_ <= 0 },
+  message { "Must be a number less than or equal to zero" },
+    ( $Moose::VERSION >= 2.0200
+        ? inline_as {
+            $_[0]->parent()->_inline_check( $_[1] ) . ' && '
                 . qq{ ($_[1] <= 0) };
         }
         : ()
@@ -49,11 +88,23 @@ subtype NegativeNum,
 
 subtype NegativeInt,
   as Int,
-  where { $_ <= 0 },
+  where { $_ < 0 },
   message { "Must be a negative integer" },
     ( $Moose::VERSION >= 2.0200
         ? inline_as {
             $_[0]->parent()->_inline_check( $_[1] ) . ' && '
+                . qq{ ($_[1] < 0) };
+        }
+        : ()
+    );
+
+subtype NegativeOrZeroInt,
+  as Int,
+  where { $_ <= 0 },
+  message { "Must be an integer less than or equal to zero" },
+    ( $Moose::VERSION >= 2.0200
+        ? inline_as {
+            $_[0]->parent()->_inline_check( $_[1] ) . ' && '
                 . qq{ ($_[1] <= 0) };
         }
         : ()
@@ -73,11 +124,9 @@ subtype SingleDigit,
 
 1;
 
-__END__;
-
-=head1 NAME
+__END__
 
-MooseX::Types::Common::Numeric - Commonly used numeric types
+=pod
 
 =head1 SYNOPSIS
 
@@ -97,11 +146,19 @@ default.
 
 =item * PositiveNum
 
+=item * PositiveOrZeroNum
+
 =item * PositiveInt
 
+=item * PositiveOrZeroInt
+
 =item * NegativeNum
 
-=item * Int
+=item * NegativeOrZeroNum
+
+=item * NegativeInt
+
+=item * NegativeOrZeroInt
 
 =item * SingleDigit
 
@@ -115,8 +172,4 @@ default.
 
 =back
 
-=head1 AUTHORS
-
-Please see:: L<MooseX::Types::Common>
-
 =cut