Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
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.