Bool

Byte tag that only uses the values 1 and 0 to indicate respectively true and false. It's usually used by SEL to store boolean values instead of a byte tag.

alias Bool = Byte

Examples

assert(new Byte(1) == new Bool(true));

Meta