(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************)
module type OrderedType = sig type t val compare : t -> t -> int end
module type S = Set.S
module type ExtS = sig
include CSig.SetS (** The underlying Set library *)
module List : sig val union : t list -> t (** Union of sets from a list *) end end
module type HashedType = sig type t val hash : t -> int end
module Hashcons (M : OrderedType) (_ : Hashcons.HashedType withtype t = M.t) : Hashcons.S with type t = Set.Make(M).t (** Create hash-consing for sets. The hashing function provided must be
compatible with the comparison function. *)
¤ Dauer der Verarbeitung: 0.15 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.