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

NAME

Any::Renderer::Data::Printer - Render data structures through Data::Printer

VERSION

Version 0.01

SYNOPSIS

Allow Any::Renderer to use Data::Printer

    use Any::Renderer;
    
    my $hash_ref = {
        foo => 'bar',
        bar => ['foo1','foo2','foo3']   
    };

    my $r =  new Any::Renderer( 'Data::Printer' );
    my $r2 = new Any::Renderer( 'Data::Printer', {indent=>8} ); 

    print $r->render ( $hash_ref );
    print $r->render ( $hash_ref );

SUBROUTINES/METHODS

See Any::Renderer

OPTIONS

See Data::Printer

AUTHOR

Kevin McGrath, <kmcgrath at baknet.com>

BUGS

Please report any bugs or feature requests to bug-any-renderer-data-printer at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Any-Renderer-Data-Printer. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

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

    perldoc Any::Renderer::Data::Printer

Repository

    https://github.com/kmcgrath/Any-Renderer-Data-Printer

LICENSE AND COPYRIGHT

Copyright 2011 Kevin McGrath.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.