Scalar::MoreUtils - Provide the stuff missing in Scalar::Util |
Scalar::MoreUtils - Provide the stuff missing in Scalar::Util
Version 0.02
use Scalar::MoreUtils qw(nil empty define default ifnil ifempty);
...
sub add { my $left = default shift, 0; my $right = default shift, 0; return $left + $right; }
sub greet { return default shift, "This the default greeting!"; }
Similar to Hsah::MoreUtils
and List::MoreUtils
, Scalar::MoreUtils
contains trivial but commonly-used scalar functionality.
Essentially, provide some pretty trivial functionality that I find useful over and over. The value of this module will probably be blasted away by Perl 5.10.
Suggestions welcome.
This is similar to the ``//'' in the Perl 5.10 ... well, not really, but kinda.
Read ``ifnil(A,B)'' as ``ifnil A, then B, otherwise A''
Read ``ifempty(A,B)'' as ``ifempty A, then B, otherwise A''
Robert Krimen, <rkrimen at cpan.org>
Please report any bugs or feature requests to
bug-scalar-moreutils at rt.cpan.org
, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Scalar::MoreUtils
You can also look for information at:
Copyright 2007 Robert Krimen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Scalar::MoreUtils - Provide the stuff missing in Scalar::Util |