package alt-ergo-lib

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

First-in first-out *unique* queues.

This module implements queues (FIFOs) without duplicates, with in-place modifications. Implemented as a wrapper around the Queue and Hashtbl (to ensure uniqueness) modules from the stdlib.

module type S = sig ... end
module Make (H : Stdlib.Hashtbl.HashedType) : S with type elt = H.t
OCaml

Innovation. Community. Security.