Frama-C API - Make
Parameters
Signature
Number of elements in the collection. Constant time.
val mem : E.t -> t -> boolval get : int -> t -> E.traises Not_found. Log complexity.
val index : E.t -> t -> intraise Not_found. Log complexity.
val remove : E.t -> t -> tval filter : (E.t -> bool) -> t -> tval update : E.t option -> E.t option -> t -> int * int * tupdate x y t replaces x by y and returns the range a..b of modified indices. Log complexity.
val iter : (E.t -> unit) -> t -> unitval iteri : (int -> E.t -> unit) -> t -> unit