dyaml.escapes

Members

Aliases

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

YAML hex codes specifying the length of the hex number.

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