Scalar::MoreUtils - Provide the stuff missing in Scalar::Util


Scalar-MoreUtils documentation  | view source Contained in the Scalar-MoreUtils distribution.

Index


NAME

Top

Scalar::MoreUtils - Provide the stuff missing in Scalar::Util

VERSION

Top

Version 0.02

SYNOPSIS

Top

  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!";
  }

DESCRIPTION

Top

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.

nil VALUE

Returns true if VALUE is not defined.

empty VALUE

Returns true if VALUE is not defined or if VALUE is the empty string ("").

define VALUE

Returns VALUE if it is defined, otherwise returns the empty string ("").

default VALUE DEFAULT

Returns VALUE if it is defined, otherwise returns DEFAULT.

This is similar to the "//" in the Perl 5.10 ... well, not really, but kinda.

ifnil VALUE DEFAULT

Returns VALUE if it is not nil, otherwise returns DEFAULT.

Read "ifnil(A,B)" as "ifnil A, then B, otherwise A"

ifnil behaves exactly the same as default.

ifempty VALUE DEFAULT

Returns VALUE if it is not empty, otherwise returns DEFAULT.

Read "ifempty(A,B)" as "ifempty A, then B, otherwise A"

AUTHOR

Top

Robert Krimen, <rkrimen at cpan.org>

BUGS

Top

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?Queue=Scalar-MoreUtils. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Scalar::MoreUtils

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Scalar-MoreUtils

* CPAN Ratings

http://cpanratings.perl.org/d/Scalar-MoreUtils

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Scalar-MoreUtils

* Search CPAN

http://search.cpan.org/dist/Scalar-MoreUtils

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Scalar-MoreUtils documentation  | view source Contained in the Scalar-MoreUtils distribution.