You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Swrup f81ca46d5e update changes 7 months ago
src fix closure 7 months ago
test fix closure 7 months ago
.gitignore first commit 8 months ago
.ocamlformat upgrade ocamlformat 8 months ago
CHANGES.md update changes 7 months ago
LICENSE.md first commit 8 months ago
README.md clean stuff 8 months ago
array.opam first release 8 months ago
dune-project first release 8 months ago

README.md

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