You can search for identifiers within the package.
in-package search v0.2.0
Ring Buffer Table
type t
type v
val create : int -> t
create size inizialize an empty ring
create size
val add : t -> v -> unit
add t v add a value to the ring. If the ring already contains size elements, the first element is removed and v is added.
add t v
v
val add_and_return_erased : t -> v -> v option
val mem : t -> v -> bool
mem t v check if v is in the ring. O(1)
mem t v
val remove : t -> v -> unit
remove t v remove one element from the table
remove t v
val clear : t -> unit
retest t remore all bindings from the current ring
retest t
val elements : t -> v list
elements t return the list of elements currently in the ring
elements t