The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Dump::OneLine - Use Data::Dump to produce dumps that fit in one line

VERSION

version 0.03

SYNOPSIS

 use Data::Dump::OneLine qw(dump_one_line dump1);

 # just use like Data::Dump's dump()
 dump_one_line(...);

DESCRIPTION

This module uses Data::Dump to produce dumps that fits in one line, that is, it strips all literal newlines. Great for dumping on to a shell-style comment in code, etc.

FUNCTIONS

dump_one_line(...)

Dump one or more data structures on a single line. Uses Data::Dump as the backend.

dump1

A shorter alias for dump_one_line().

SEE ALSO

Data::Dump

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.