hex constant

TomlIntegerFormat const hex

Format of a hexadecimal (base 16) integer.

hex-prefix = %x30.78               ; 0x

Implementation

static const TomlIntegerFormat hex =
    TomlIntegerFormat._(base: 16, prefix: '0x');