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

NAME

Bubblegum::Wrapper::Dumper - Bubblegum Wrapper around Data Dumping

VERSION

version 0.45

SYNOPSIS

    use Bubblegum;

    my $data = {1..3,{4,{5,6,7,{8,9,10,11}}}};

    my $string  = $data->dumper->encode;
    my $hashref = $string->dumper->decode;

DESCRIPTION

Bubblegum::Wrapper::Dumper is a Bubblegum wrapper which provides the ability to endcode/decode Perl data structures. It is not necessary to use this module as it is loaded automatically by the Bubblegum class.

METHODS

decode

The decode method deserializes the stringified Perl data structure using the Data::Dumper module.

encode

The encode method serializes the Perl data structure using the Data::Dumper module with the following options; Indent=0, Sortkeys=1, and Terse=1.

AUTHOR

Al Newkirk <anewkirk@ana.io>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Al Newkirk.

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