dyaml.escapes

Types 2

aliasescapes = AliasSeq!('0', 'a', 'b', 't', '\t', 'n', 'v', 'f', 'r', 'e', ' ', '/', '\"', '\\', 'N', '_', 'L', 'P')
aliasescapeHexCodeList = AliasSeq!('x', 'u', 'U')

YAML hex codes specifying the length of the hex number.

Functions 3

fndchar fromEscape(dchar escape) @safe pure nothrow @nogcConvert a YAML escape to a dchar.
fndchar toEscape(dchar value) @safe pure nothrow @nogcConvert a dchar to a YAML escape.
fnuint escapeHexLength(dchar hexCode) @safe pure nothrow @nogcGet the length of a hexadecimal number determined by its hex code.