forked from zapashcanon/array
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
|
7 months ago | |
---|---|---|
src | 7 months ago | |
test | 7 months ago | |
.gitignore | 8 months ago | |
.ocamlformat | 8 months ago | |
CHANGES.md | 7 months ago | |
LICENSE.md | 8 months ago | |
README.md | 8 months ago | |
array.opam | 8 months ago | |
dune-project | 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.