dyaml.escapes

Undocumented in source.

Members

Aliases

escapeHexCodeList
alias escapeHexCodeList = AliasSeq!('x', 'u', 'U')

YAML hex codes specifying the length of the hex number.

escapes
alias escapes = AliasSeq!('0', 'a', 'b', 't', '\t', 'n', 'v', 'f', 'r', 'e', ' ', '\"', '\\', 'N', '_', 'L', 'P')
Undocumented in source.

Functions

escapeHexLength
uint escapeHexLength(dchar hexCode)

Get the length of a hexadecimal number determined by its hex code.

fromEscape
dchar fromEscape(dchar escape)

Convert a YAML escape to a dchar.

toEscape
dchar toEscape(dchar value)

Convert a dchar to a YAML escape.

Meta