Bigarray_ext.Array0Sourceinclude module type of struct include Bigarray.Array0 endThe type of zero-dimensional Bigarrays whose elements have OCaml type 'a, representation kind 'b, and memory layout 'c.
Return the kind of the given Bigarray.
Return the layout of the given Bigarray.
Array0.change_layout a layout returns a Bigarray with the specified layout, sharing the data with a. No copying of elements is involved: the new array and the original array share the same storage space.
size_in_bytes a is a's kind_size_in_bytes.
Copy the first Bigarray to the second Bigarray. See Genarray.blit for more details.
Fill the given Bigarray with the given value. See Genarray.fill for more details.