1YAML::XS(3)           User Contributed Perl Documentation          YAML::XS(3)
2
3
4

NAME

6       YAML::XS - Perl YAML Serialization using XS and libyaml
7

SYNOPSIS

9           use YAML::XS;
10
11           my $yaml = Dump [ 1..4 ];
12           my $array = Load $yaml;
13

DESCRIPTION

15       Kirill Siminov's "libyaml" is arguably the best YAML implementation.
16       The C library is written precisely to the YAML 1.1 specification. It
17       was originally bound to Python and was later bound to Ruby.
18
19       This module is a Perl XS binding to libyaml which offers Perl the best
20       YAML support to date.
21
22       This module exports the functions "Dump" and "Load". These functions
23       are intended to work exactly like "YAML.pm"'s corresponding functions.
24

SEE ALSO

26        * YAML.pm
27        * YAML::Syck
28        * YAML::Tiny
29

AUTHOR

31       Ingy doet Net <ingy@cpan.org>
32

MAINTAINERS

34       Yuval Kogman <nothingmuch@woobling.org>
35
36       Gisle Aas <gisle@ActiveState.com>
37
39       Copyright (c) 2007, 2008, 2009, 2010. Ingy doet Net.
40
41       This program is free software; you can redistribute it and/or modify it
42       under the same terms as Perl itself.
43
44       See http://www.perl.com/perl/misc/Artistic.html
45
46
47
48perl v5.12.0                      2010-04-15                       YAML::XS(3)
Impressum