logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

YAML::PP::Schema::YAML1_1 - YAML 1.1 Schema for YAML::PP

Description

       This schema allows you to load the common YAML Types from YAML 1.1.

Methods

       register
           Called by YAML::PP::Schema

Name

       YAML::PP::Schema::YAML1_1 - YAML 1.1 Schema for YAML::PP

See Also

       <https://yaml.org/type/null.html>
       <https://yaml.org/type/float.html>
       <https://yaml.org/type/int.html>
       <https://yaml.org/type/bool.html>

perl v5.40.0                                       2025-02-15                     YAML::PP::Schema::YAML1_1(3pm)

Synopsis

           use YAML::PP;

           my $yp = YAML::PP->new( schema => ['YAML1_1'] );
           my $yaml = <<'EOM';
           ---
           booltrue: [ true, True, TRUE, y, Y, yes, Yes, YES, on, On, ON ]
           EOM
           my $data = $yp->load_string($yaml);

See Also