[][src]Module libyaml::tag

Tags for YAML language-independent types.

The contents of this module are based on the list of language-independent YAML tags defined under the yaml.org domain. The list is available at https://yaml.org/type.

Constants

BINARY

A sequence of zero or more octets (8-bit values).

BOOL

Mathematical booleans.

FLOAT

Floating-point approximation to real numbers.

INT

Mathematical integers.

MAP

Unordered set of key: value pairs without duplicates.

MERGE

Specify one or more mappings to be merged with the current one.

NULL

Devoid of value.

OMAP

Ordered sequence of key: value pairs without duplicates.

PAIRS

Ordered sequence of key: value pairs allowing duplicates.

SEQ

Sequence of arbitrary values.

SET

Unordered set of non-equal values.

STR

A sequence of zero or more Unicode characters.

TIMESTAMP

A point in time.

VALUE

Specify the default value of a mapping.

YAML

Keys for encoding YAML in YAML.