package batteries
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=b691e5870f876c6e590d6aa51b4c5457
sha512=3b0643ff337cd70da8c4b77887d212e82d043a7163fca36588be12186bc86bbcf0d56b13349325f12eabb96c846204c88560786342f50af7bf4e20b9480d3964
doc/batteries.unthreaded/BatBigarray/Array0/index.html
Module BatBigarray.Array0
Source
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.
size_in_bytes a
is a
's kind_size_in_bytes
.
Copy the first big array to the second big array. See Genarray.blit
for more details.
Fill the given big array with the given value. See Genarray.fill
for more details.