Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Make_._type element = H.tThe type of elements.
val empty : tempty is the empty array.
make n x returns a new array of length n, where every slot contains the value x.
val length : t -> intlength a returns the length of the array a.
unsafe_get a i returns the element found at index i in the array a. The index i must be valid.
unsafe_set a i x writes the value x at index i in the array a. The index i must be valid.