- void `b_append'(data d, mode
c);
appends character c to the d byte array
- void `b_cast'(data d, text
s);
sets the d byte array as s
- void `b_clear'(data d);
clears the d byte array
- void `b_copy'(data d, data
e);
sets the d byte array as e
- void `b_delete'(data d, mode
p);
deletes the p indexed character in the d byte array (negative
position indications are interpreted with respect to the end of string)
- void `b_insert'(data d, mode
p, mode c);
inserts character c before the p indexed character in the d
byte array (negative position indications are interpreted with respect to the
end of string)
- mode `b_length'(data d);
is the length (byte count) of the d byte array
- void `b_replace'(data d, mode
p, mode c);
replaces the p indexed character in the d byte array with the
c character (negative position indications are interpreted with respect
to the end of string)
- void `b_set'(data &d, data
e);
sets the d byte array as a reference of the e byte array
- void `b_size'(data d, mode
n);
resizes the d byte array as n bytes long
- text `b_string'(data d);
is the d byte array
- void `b_swap'(data d, data
e);
exchanges the content of the d and e byte arrays
- mode `b_text'(data d, mode
p);
is the p indexed character in the d byte array