2024-02-25 23:07:13 +01:00
2024-02-25 22:06:43 +01:00
2024-02-25 22:06:43 +01:00
2024-02-22 17:54:15 +01:00
2024-02-23 07:29:40 +01:00
2024-02-22 18:21:02 +01:00
2024-02-25 23:07:13 +01:00
2024-02-22 18:21:02 +01:00
2024-02-22 17:54:15 +01:00
2024-02-22 18:15:40 +01:00

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
No description provided
Readme
Languages
OCaml 100%