package lsp

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

Like a queue, but allows O(1) removal at any position

type 'a node
val remove : _ node -> unit
val is_empty : _ t -> bool
val create : unit -> 'a t
val push : 'a t -> 'a -> 'a node
val pop : 'a t -> 'a option