Ba.Buffer
type t = buffer
The type for bigarray buffers.
val create : scalar_type -> int -> buffer
create st count
is a buffer of scalar type st
with count
scalars.
val scalar_type : buffer -> scalar_type
buffer_scalar_type b
is b
's buffer scalar type.
val length : buffer -> int
buffer_length b
is b
's buffer scalar length.
val byte_length : buffer -> int
buffer_byte_length b
is b
's buffer byte length.
of_bigarray ba
is a buffer for the bigarray ba
. data
can be used to add information whenever the bigarray kind is:
Bigarray.int16_unsigned
, if `Float
is specified the scalar type will be `Float16
.Bigarray.int32
or Bigarray.int64
, if `Unsigned
is specified the scalar type will be, respectively `UInt32
and `UInt64
.val pp : Format.formatter -> buffer -> unit
pp b
prints a textual representation of b
on ppf
. Does not print the buffer's data.