package goblint-cil

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t
type !'a fill =
  1. | Elem of 'a
  2. | Susp of int -> 'a
val make : int -> 'a fill -> 'a t
val num_alloc_index : 'a t -> int
val max_init_index : 'a t -> int
val reset_max_init_index : 'a t -> unit
val getg : 'a t -> int -> 'a
val setg : 'a t -> int -> 'a -> unit
val get : 'a t -> int -> 'a
val set : 'a t -> int -> 'a -> unit
val clear : 'a t -> unit
val copy : 'a t -> 'a t
val deep_copy : 'a t -> ('a -> 'a) -> 'a t
val iter : ('a -> unit) -> 'a t -> unit
val iteri : (int -> 'a -> unit) -> 'a t -> unit
val iter2 : (int -> 'a -> 'b -> unit) -> 'a t -> 'b t -> unit
val fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
val fold_lefti : ('a -> int -> 'b -> 'a) -> 'a -> 'b t -> 'a
val fold_right : ('b -> 'a -> 'a) -> 'b t -> 'a -> 'a
val d_growarray : Pretty.doc -> (int -> 'a -> Pretty.doc) -> unit -> 'a t -> Pretty.doc
val restoreGA : ?deepCopy:('a -> 'a) -> 'a t -> unit -> unit
val find : 'a t -> ('a -> bool) -> int option