package frama-c

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

Union-find based partitions

module type Elt = sig ... end
module type Set = sig ... end
module type Map = sig ... end
module Make (E : Elt) (S : Set with type elt = E.t) (M : Map with type key = E.t) : sig ... end