package lascar

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

Extension to the Stdib.Set module

module type S = sig ... end

Output signature of the SetExt.Make functor.

module Make (E : OrderedTypeExt.T) : S with type elt = E.t

Functor building an implementation of the set structure given a totally ordered, stringable type.

module Product (S1 : S) (S2 : S) : sig ... end

Functor building an implementation of a set product given the implementation of two sets