Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

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

Author

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

Description

       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.

Name

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

Synopsis

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

See Also