package ocaml-base-compiler
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=011879c913e8f988ecdac020b205e2baa4023052efed25013bdb9a6b0d5c6a80
md5=4f3906e581181c5435078ffe3e485e3f
doc/bigarray/Bigarray/Array0/index.html
Module Bigarray.Array0
Zero-dimensional arrays. The Array0
structure provides operations similar to those of Bigarray.Genarray
, but specialized to the case of zero-dimensional arrays that only contain a single scalar value. Statically knowing the number of dimensions of the array allows faster operations, and more precise static type-checking.
The type of zero-dimensional big arrays whose elements have OCaml type 'a
, representation kind 'b
, and memory layout 'c
.
Array0.create kind layout
returns a new bigarray of zero dimension. kind
and layout
determine the array element kind and the array layout as described for Genarray.create
.
Array0.change_layout a layout
returns a big array 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.
val size_in_bytes : ('a, 'b, 'c) t -> int
size_in_bytes a
is a
's kind_size_in_bytes
.
val get : ('a, 'b, 'c) t -> 'a
Array0.get a
returns the only element in a
.
val set : ('a, 'b, 'c) t -> 'a -> unit
Array0.set a x v
stores the value v
in a
.
Copy the first big array to the second big array. See Genarray.blit
for more details.
val fill : ('a, 'b, 'c) t -> 'a -> unit
Fill the given big array with the given value. See Genarray.fill
for more details.