package gg

  1. Overview
  2. Docs
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.

val of_bigarray : ?data:[ `Unsigned | `Float ] -> ('a, 'b) bigarray -> buffer

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.

Raises Invalid_argument if the bigarray kind does not correspond to a Ba.scalar_type or if data is irrelevant.

val pp : Stdlib.Format.formatter -> buffer -> unit

pp b prints a textual representation of b on ppf. Does not print the buffer's data.