package nullable-array

  1. Overview
  2. Docs
Small self-contained library providing an efficient implementation for a type equivalent to `'a option array`

Install

Dune Dependency

Authors

Maintainers

Sources

0.1.tar.gz
md5=c9856d37b6418c387e9d8def8ca31d5e

Description

Published: 24 May 2017

README

Nullable-array

Nullable-array is a small self-contained library providing an efficient implementation for a type equivalent to 'a option array

let a = Nullable_array.make 3 in
Nullable_array.set 1 (Some 4);
assert(Nullable_array.get 0 = None);
assert(Nullable_array.get 1 = Some 4);

Dependencies (2)

  1. jbuilder >= "1.0+beta8"
  2. ocaml >= "4.03" & <= "4.06"

Dev Dependencies

None

Used by

None

Conflicts

None