NAME
autobox::dump - human/perl readable strings from the results of an EXPR
VERSION
Version 20090425.1630
SYNOPSIS
The autobox::dump pragma adds, via the autobox pragma, a method to normal expression (such as scalars, arrays, hashes, math, literals, etc.) that produces a human/perl readable representation of the value of that expression.
use autobox::dump;
my $foo = "foo";
print $foo->perl; # 'foo';
print +(5*6)->perl; # 30;
my @a = (1..3);
print @a->perl;
# [
# 1,
# 2,
# 3
# ];
print {a=>1, b=>2}->perl;
# {
# 'a' => 1,
# 'b' => 2
# };
AUTHOR
Chas. J Owens IV, <chas.owens at gmail.com>
BUGS
Has all the issues autobox has.
Please report any bugs or feature requests to http://github.com/cowens/autobox-dump/issues
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc autobox::dump
ACKNOWLEDGEMENTS
Michael Schwern for starting the perl5i pragma which prompted me to add a feature I wanted to autobox.
COPYRIGHT & LICENSE
Copyright 2009 Chas. J Owens IV, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.