The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:YAML-PP pp"

YAML::PP - YAML 1.2 processor River stage three • 37 direct dependents • 167 total dependents

YAML::PP is a modular YAML processor. It aims to support "YAML 1.2" and "YAML 1.1". See <https://yaml.org/>. Some (rare) syntax elements are not yet supported and documented below. YAML is a serialization language. The YAML input is called "YAML Stre...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Perl - Convenience module for loading and dumping Perl objects River stage three • 37 direct dependents • 167 total dependents

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....

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Common - Constants and common functions River stage three • 37 direct dependents • 167 total dependents

This module provides common constants and functions for modules working with YAML::PP events....

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema - Schema for YAML::PP River stage three • 37 direct dependents • 167 total dependents

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Writer - Write YAML output River stage three • 37 direct dependents • 167 total dependents

The YAML::PP::Emitter sends its output to the writer. You can use your own writer. if you want to send the YAML output to somewhere else. See t/44.writer.t for an example....

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Grammar - YAML grammar River stage three • 37 direct dependents • 167 total dependents

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Emitter - Emitting events River stage three • 37 direct dependents • 167 total dependents

The emitter emits events to YAML. It provides methods for each event type. The arguments are mostly the same as the events from YAML::PP::Parser....

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Highlight - Syntax highlighting utilities River stage three • 37 direct dependents • 167 total dependents

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Constructor - Constructing data structure from parsing events River stage three • 37 direct dependents • 167 total dependents

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Core - YAML 1.2 Core Schema River stage three • 37 direct dependents • 167 total dependents

This schema is the official recommended Core Schema for YAML 1.2. It loads additional values to the JSON schema as special types, for example "TRUE" and "True" additional to "true". Official Schema: <https://yaml.org/spec/1.2/spec.html#id2804923> Her...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Writer::File - Write YAML output to file or file handle River stage three • 37 direct dependents • 167 total dependents

The YAML::PP::Emitter sends its output to the writer. You can use your own writer. if you want to send the YAML output to somewhere else. See t/44.writer.t for an example....

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::JSON - YAML 1.2 JSON Schema River stage three • 37 direct dependents • 167 total dependents

With this schema, the resolution of plain values will work like in JSON. Everything that matches a special value will be loaded as such, other plain scalars will be loaded as strings. Note that this is different from the official YAML 1.2 JSON Schema...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Perl - Schema for serializing perl objects and special types River stage three • 37 direct dependents • 167 total dependents

This schema allows you to load and dump perl objects and special types. Please note that loading objects of arbitrary classes can be dangerous in Perl. You have to load the modules yourself, but if an exploitable module is loaded and an object is cre...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Merge - Enabling YAML merge keys for mappings River stage three • 37 direct dependents • 167 total dependents

See <https://yaml.org/type/merge.html> for the specification. Quote: "Specify one or more mappings to be merged with the current one. The "<<" merge key is used to indicate that all the keys of one or more specified maps should be inserted into the c...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Binary - Schema for loading and binary data River stage three • 37 direct dependents • 167 total dependents

See <https://yaml.org/type/binary.html> By prepending a base64 encoded binary string with the "!!binary" tag, it can be automatically decoded when loading. Note that the logic for dumping is probably broken, see <https://github.com/perlpunk/YAML-PP-p...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Type::MergeKey - A special node type for merge keys River stage three • 37 direct dependents • 167 total dependents

See YAML::PP::Schema::Merge...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Include - Include YAML files River stage three • 37 direct dependents • 167 total dependents

This plugin allows you to split a large YAML file into smaller ones. You can then include these files with the "!include" tag. It will search for the specified filename relative to the currently processed filename. You can also specify the paths wher...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::YAML1_1 - YAML 1.1 Schema for YAML::PP River stage three • 37 direct dependents • 167 total dependents

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

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Failsafe - YAML 1.2 Failsafe Schema River stage three • 37 direct dependents • 167 total dependents

With this schema, everything will be treated as a string. There are no booleans, integers, floats or undefined values. Here you can see all Schemas and examples implemented by YAML::PP: <https://perlpunk.github.io/YAML-PP-p5/schemas.html> Official Sc...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

YAML::PP::Schema::Tie::IxHash - (Deprecated) Schema for serializing ordered hashes River stage three • 37 direct dependents • 167 total dependents

This is deprecated. See the new option "preserve" in YAML::PP. This schema allows you to dump ordered hashes which are tied to Tie::IxHash. This code is pretty new and experimental. It is not yet implemented for loading yet, so for now you have to ti...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC
28 results (0.041 seconds)