#============================================================================= # # Module: Term::CLI::Argument::Number::Float # # Description: Class for floating point arguments in Term::CLI # # Author: Steven Bakker (SBAKKER), # Created: 22/01/18 # # Copyright (c) 2018 Steven Bakker # # This module is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. See "perldoc perlartistic." # # This software is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # #============================================================================= use 5.014_001; package Term::CLI::Argument::Number::Float 0.052001 { use Modern::Perl 1.20140107; use Scalar::Util 1.38 qw( looks_like_number ); use Moo 1.000001; use namespace::clean 0.25; extends 'Term::CLI::Argument::Number'; sub coerce_value { if (looks_like_number($_[1])) { return $_[1] + 0.0; } return undef; } } 1; __END__ =pod =head1 NAME Term::CLI::Argument::Number::Float - class for floating point arguments in Term::CLI =head1 VERSION version 0.052001 =head1 SYNOPSIS use Term::CLI::Argument::Number::Float; my $arg = Term::CLI::Argument::Number::Float->new( name => 'index', min => -1.0, max => +1.0, inclusive => 1 ); =head1 DESCRIPTION Class for floating point arguments in L(3p). Extends L(3p). =head2 Inherits from: L(3p). =head2 Consumes: None. =head1 CONSTRUCTORS See L(3p). =head1 ACCESSORS See L(3p). =head1 METHODS Inherited from L(3p). Additionally: =over =item B ( I ) Overloaded to check for a valid numerical value (using L). =back =head1 SEE ALSO L(3p), L(3p), L(3p), L(3p), L(3p). =head1 AUTHOR Steven Bakker Esbakker@cpan.orgE, 2018. =head1 COPYRIGHT AND LICENSE Copyright (c) 2018 Steven Bakker This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See "perldoc perlartistic." This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. =cut