package frama-c

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Heap.SetSource

Sourcetype elt = t
Sourcetype t = set
Sourceval empty : t
Sourceval add : elt -> t -> t
Sourceval singleton : elt -> t
Sourceval elements : t -> elt list
Sourceval is_empty : t -> bool
Sourceval mem : elt -> t -> bool
Sourceval iter : (elt -> unit) -> t -> unit
Sourceval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
Sourceval filter : (elt -> bool) -> t -> t
Sourceval partition : (elt -> bool) -> t -> t * t
Sourceval for_all : (elt -> bool) -> t -> bool
Sourceval exists : (elt -> bool) -> t -> bool
Sourceval iter_sorted : (elt -> unit) -> t -> unit
Sourceval fold_sorted : (elt -> 'a -> 'a) -> t -> 'a -> 'a
Sourceval union : t -> t -> t
Sourceval inter : t -> t -> t
Sourceval diff : t -> t -> t
Sourceval subset : t -> t -> bool
Sourceval intersect : t -> t -> bool
Sourceval of_list : elt list -> t
Sourcetype 'a mapping = 'a map
Sourceval mapping : (elt -> 'a) -> t -> 'a mapping
OCaml

Innovation. Community. Security.