YAML::Dumper - YAML class for dumping Perl objects to YAML


YAML documentation  | view source Contained in the YAML distribution.

Index


NAME

Top

YAML::Dumper - YAML class for dumping Perl objects to YAML

SYNOPSIS

Top

    use YAML::Dumper;
    my $dumper = YAML::Dumper->new;
    $dumper->indent_width(4);
    print $dumper->dump({foo => 'bar'});

DESCRIPTION

Top

YAML::Dumper is the module that YAML.pm used to serialize Perl objects to YAML. It is fully object oriented and usable on its own.

AUTHOR

Top

Ingy döt Net <ingy@cpan.org>

COPYRIGHT

Top


YAML documentation  | view source Contained in the YAML distribution.