oct constant

TomlIntegerFormat const oct

Format of an octal (base 8) integer.

oct-prefix = %x30.6f               ; 0o

Implementation

static const TomlIntegerFormat oct =
    TomlIntegerFormat._(base: 8, prefix: '0o');