NAME
MooseX::Types::LaxNum - Old behaviour of the Num type
VERSION
version 0.01
SYNOPSIS
#!/usr/bin/env perl
use strict;
use warnings;
package Foo {
use Moose;
use MooseX::Types::LaxNum;
has 'laxnum', is => 'rw', isa => 'LaxNum';
}
my $foo = Foo->new( laxnum => '1234' );
DESCRIPTION
LaxNum
accepts everything for which "looks_like_number" in Scalar::Util return true. It can be used to get the old behaviour of Moose::Util::TypeConstraints::Num
, since Num has been changed to be more strict.
NAME
MooseX::Types::LaxNum
AUTHOR
Upasana Shuka, me@upasana.me
COPYRIGHT & LICENSE
Copyright 2013 Upasana Shukla.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
Upasana Shukla <me@upasana.me>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Upasana Shukla.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.