logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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