The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Perldoc::Data::Chill - Convert Perl data structures to Perldoc

SYNOPSIS

 use Perldoc::Data::Chill;

 my $chiller = Perldoc::Data::Chill->new();

 $chiller->receiver(Perldoc->new());
 $chiller->source($object);

 # note: send_one() will just send_all()
 $chiller->send_all();

DESCRIPTION