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} );
$r
->render (
$hash_ref
);
$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
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Any-Renderer-Data-Printer
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
Repository
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.