Frama-C API - Make
Parameters
Signature
val equal : t -> t -> boolval compare : t -> t -> intval remove : elt -> t -> tval mem : elt -> t -> boolval iter : (elt -> unit) -> t -> unitval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'aval filter : (elt -> bool) -> t -> tval partition : (elt -> bool) -> t -> t * tval subset : t -> t -> boolval intersect : t -> t -> boolval factorize : t -> t -> t * t * tReturns (left,common,right)
val big_union : t list -> tval big_inter : t list -> t