YAML::Any(3pm) - phpMan

Command: man perldoc info search(apropos)  


YAML::Any(3pm)                 User Contributed Perl Documentation                 YAML::Any(3pm)

NAME
       YAML::Any - Pick a YAML implementation and use it.

STATUS
       WARNING: This module will soon be deprecated. The plan is that YAML.pm itself will act
       like an Any module.

SYNOPSIS
           use YAML::Any;
           $YAML::Indent = 3;
           my $yaml = Dump(@objects);

DESCRIPTION
       There are several YAML implementations that support the Dump/Load API. This module selects
       the best one available and uses it.

ORDER
       Currently, YAML::Any will choose the first one of these YAML implementations that is
       installed on your system:

       o   YAML::XS

       o   YAML::Syck

       o   YAML::Old

       o   YAML

       o   YAML::Tiny

OPTIONS
       If you specify an option like:

           $YAML::Indent = 4;

       And YAML::Any is using YAML::XS, it will use the proper variable: $YAML::XS::Indent.

SUBROUTINES
       Like all the YAML modules that YAML::Any uses, the following subroutines are exported by
       default:

       o   Dump

       o   Load

       and the following subroutines are exportable by request:

       o   DumpFile

       o   LoadFile

METHODS
       YAML::Any provides the following class methods.

       "YAML::Any->order"
           This method returns a list of the current possible implementations that YAML::Any will
           search for.

       "YAML::Any->implementation"
           This method returns the implementation the YAML::Any will use. This result is obtained
           by finding the first member of YAML::Any->order that is either already loaded in %INC
           or that can be loaded using "require". If no implementation is found, an error will be
           thrown.

EXAMPLES
   DumpFile and LoadFile
       Here is an example for "DumpFile":

           #!/usr/bin/perl

           use strict;
           use warnings;

           use YAML::Any qw(DumpFile);

           my $ds =
           {
               array => [5,6,100],
               string => "Hello",
           };

           DumpFile("hello.yml", $ds);

       When run, this creates a file called "hello.yml" in the current working directory, with
       the following contents.

           ---
           array:
           - 5
           - 6
           - 100
           string: Hello

       In turn, the following "LoadFile" example, loads the contents from there and accesses
       them:

           #!/usr/bin/perl

           use strict;
           use warnings;

           use YAML::Any qw(LoadFile);

           my ($ds) = LoadFile("hello.yml");

           print "String == '", $ds->{string}, "'\n";

       Assuming "hello.yml" exists, and is as created by the "DumpFile" example, it prints:

           $ perl load.pl
           String == 'Hello'
           $

AUTHOR
       Ingy dot Net <ingy AT cpan.org>

COPYRIGHT
       Copyright 2001-2014. Ingy dot Net

       This program is free software; you can redistribute it and/or modify it under the same
       terms as Perl itself.

       See <http://www.perl.com/perl/misc/Artistic.html>

perl v5.30.0                                2020-01-29                             YAML::Any(3pm)

Generated by $Id: phpMan.php,v 4.55 2007/09/05 04:42:51 chedong Exp $ Author: Che Dong
On Apache
Under GNU General Public License
2024-04-27 22:39 @3.145.171.58 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0!Valid CSS!