package hector

  1. Overview
  2. Docs
module type MONOARRAY = sig ... end

A minimal signature for monomorphic arrays.

module type MONOVECTOR = sig ... end
module type POLYVECTOR = sig ... end

This module offers an implementation of vectors. A vector is a mutable data structure, which stores a sequence of values.

module Int : MONOVECTOR with type element = int
module Mono : sig ... end
module Poly : POLYVECTOR

This module offers an implementation of vectors. A vector is a mutable data structure, which stores a sequence of values.

OCaml

Innovation. Community. Security.