///|
test {
inspect(@byte.MIN_VALUE, content="b'\\x00'")
inspect(@byte.MAX_VALUE, content="b'\\xFF'")
}///|
test {
// ASCII character
inspect(b'A'.to_uint64(), content="65")
// Hex escape
inspect(b'\x41'.to_uint64(), content="65")
// Min and max
inspect(b'\x00'.to_uint64(), content="0")
inspect(b'\xff'.to_uint64(), content="255")
}#deprecated("Use `MAX_VALUE` instead")
let max_value : Byte#deprecated("Use `MIN_VALUE` instead")
let min_value : ByteInstall
Installed by default