SimpleIO.IO_Bytes
Byte sequence operations
Return the length (number of bytes) of the argument.
set s n c modifies s, replacing the byte at index n with c.
sub s start len returns a new byte sequence of length len,
containing the subsequence of s that starts at position start
and has length len.
create n returns a new byte sequence of length n. The sequence is
uninitialized and contains arbitrary bytes.
Raise Invalid_argument if n < 0 or n > system's maximum length of
byte sequences.
Return a new byte sequence that contains the same bytes as the given
string.
Return a new string that contains the same bytes as the given byte
sequence.