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

NAME

Data::Encoder::Data::Dumper - Data::Encoder gateway for Data::Dumper

SYNOPSIS

  use Data::Encoder;
  
  my $encoder = Data::Encoder->load('Data::Dumper');
  my $dumped = $encoder->encode({ foo => bar });
  my $hash = $encoder->decode($dumped);
  
  my $encoder = Data::Encoder->load('Data::Dumper', { SortKeys => 1 });
  my $dumped = $encoder->encode($data);
  ## $dumper = Data::Dumper->new([$data]);
  ## $dumper->SortKeys(1);
  ## $dumper->Dump;

AUTHOR

xaicron <xaicron {at} cpan.org>

COPYRIGHT

Copyright 2010 - xaicron

LICENSE

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

SEE ALSO

Data::Dumper