= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
package tezos-stdlib
-
tezos-stdlib
-
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Bounded queues combined with hash-tables, based on Ringo
.
A hash queue is a structure where one can add elements to the back of the queue, while associating them to keys. This allows for efficiently retrieving elements based on the key and for removing elements anywhere in the queue.
module Make (K : Hashtbl.HashedType) (V : sig ... end) : sig ... end