You can search for identifiers within the package.
in-package search v0.2.0
why3find
why3find.utils
Why3findUtils.Darray
Dynamic Arrays
type 'a t
val get : 'a t -> int -> 'a
val length : 'a t -> int
val map : ('a -> 'b) -> 'a t -> 'b t
val iter : ('a -> unit) -> 'a t -> unit
val iteri : (int -> 'a -> unit) -> 'a t -> unit
val empty : 'a t
val const : ?length:int -> 'a -> 'a t
val option : 'a option -> 'a t
val array : 'a array -> 'a t
val list : 'a list -> 'a t
val concat : 'a t -> 'a t -> 'a t
type 'a buffer
val create : unit -> 'a buffer
val add : 'a buffer -> 'a -> unit
val addi : 'a buffer -> 'a -> int
Returns the index of the added element.
val contents : 'a buffer -> 'a t
Returns all the elements added to the buffer so far.
val sequence : ?overhead:int -> 'a Seq.t -> 'a t
Build the collection from a sequence. Can not be reversed.
val reverse : 'a t -> 'a t
Reverse the order of elements.
val delayed : ('a -> 'b t) -> 'a -> 'b t
Delayed computation
val make : length:(unit -> int) -> value:(int -> 'a) -> 'a t
Low-level constructor
val cache : length:(unit -> int) -> value:(int -> 'a) -> 'a t
Low-level constructor, with cache