= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package containers
-
containers
-
containers.data
-
containers.monomorphic
-
containers.sexp
-
containers.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Makes an array given an arbitrary element type
Parameters
module Elt : sig ... end
Signature
type elt = Elt.t
The element type
type t = Elt.t array
The type of an array instance
val dummy : elt
A dummy element used for empty slots in the array
- since 2.4
val create : int -> t
Make an array of the given size, filled with dummy elements.
val length : t -> int
length t
gets the total number of elements currently in t
.
blit t s arr i len
copies len
elements from arr
starting at i
to position s
from t
.
ON THIS PAGE