octal package:text-builder-dev

Octal representation of an integer.
>>> octal @Int32 123456
"00000361100"
>>> octal @Int32 (-123456)
"77777416700"
Same as octal, but with the "0o" prefix.
>>> prefixedOctal @Int8 0
"0o000"