Pixeldrift.BigbytesBigarrays of bytes.
The type for bigarrays of bytes.
val create : len:int -> init:int -> tcreate ~len ~init is a bigarray of bytes of length len filled with byte init.
val length : t -> intlength b is the length of b.
val get : t -> int -> intget b i is the byte at index i of b.
val set : t -> int -> int -> unitset b i v sets the byte at index i of b to v.
get b i is the big endian unsigned 32-bit integer at byte index i of b.
set b i v sets the big endian unsigned 32-bit integer at byte index i of b to v.
val clear : t -> unitclear b zeroes b.