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 doet Net <ingy@cpan.org>
21
23 Copyright (c) 2006, 2011-2012. Ingy doet Net. All rights reserved.
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
31 Hey! The above document had some coding errors, which are explained
32 below:
33
34 Around line 777:
35 Non-ASCII character seen before =encoding in 'doet'. Assuming UTF-8
36
37
38
39perl v5.16.3 2012-07-13 YAML::Loader(3)