forked from zapashcanon/array
array
array is an OCaml library providing easy to use, cryptographically safe, thread safe, modular arrays.
Installation
array
can be installed with opam:
opam install array
If you don't have opam
, you can install it following the how to install opam guide.
If you can't or don't want to use opam
, consult the opam file for build instructions.
Quickstart
module Array = Array.Make (struct
type t = int
let len = 9
let init = Fun.id
end)
let () = print_int @@ Array.fold_left ( + ) 6
For more, have a look at the test suite.
About
Description
Languages
OCaml
100%