enum Mode [src]

Fields

decimal
binary
octal
hex
scientific

Members

Source

pub const Mode = enum { decimal, binary, octal, hex, scientific, pub fn base(mode: Mode) ?u8 { return switch (mode) { .decimal => 10, .binary => 2, .octal => 8, .hex => 16, .scientific => null, }; } }