GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
YAML::PP::Perl(3) User Contributed Perl Documentation YAML::PP::Perl(3)

YAML::PP::Perl - Convenience module for loading and dumping Perl objects

    use YAML::PP::Perl;
    my @docs = YAML::PP::Perl->new->load_string($yaml);
    my @docs = YAML::PP::Perl::Load($yaml);

    # same as
    use YAML::PP;
    my $yp = YAML::PP->new( schema => [qw/ Core Perl /] );
    my @docs = $yp->load_string($yaml);

This is just for convenience. It will create a YAML::PP object using the default schema ("Core") and the YAML::PP::Schema::Perl schema.

See YAML::PP::Schema::Perl for documentation.

Load, Dump, LoadFile, DumpFile
These work like the functions in YAML::PP, just adding the "Perl" schema.
new
Constructor, works like in YAML::PP, just adds the "Perl" schema to the list of arguments.
2021-12-25 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.