MooseX::Types::LaxNum - A LaxNum type which provides the loose behavior of Moose's Num pre-2.10
Contents
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.
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.
perl v5.34.0 2022-06-15 MooseX::Types::LaxNum(3pm)
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
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' );
Version
version 0.04
