1YAML::Loader(3) User Contributed Perl Documentation YAML::Loader(3)
2
3
4
6 YAML::Loader - YAML class for loading Perl objects to YAML
7
9 use YAML::Loader;
10 my $loader = YAML::Loader->new;
11 my $hash = $loader->load(<<'...');
12 foo: bar
13 ...
14
16 YAML::Loader is the module that YAML.pm used to deserialize YAML to
17 Perl objects. It is fully object oriented and usable on its own.
18
20 Ingy döt Net <ingy@cpan.org>
21
23 Copyright 2001-2014. Ingy döt Net
24
25 This program is free software; you can redistribute it and/or modify it
26 under the same terms as Perl itself.
27
28 See <http://www.perl.com/perl/misc/Artistic.html>
29
30
31
32perl v5.28.1 2019-04-28 YAML::Loader(3)