Legend:
Library
Module
Module type
Parameter
Class
Class type
Mutable sequence of elements (deprecated)
A sequence is an object holding a list of elements which support the following operations:
adding an element to the left or the right in time and space O(1)
taking an element from the left or the right in time and space O(1)
removing a previously added element from a sequence in time and space O(1)
removing an element while the sequence is being transversed.
deprecated
This module should be an internal implementation detail of Lwt, and may be removed from the API at some point in the future. Use any other doubly-linked list library as an alternative.
type'a t
Type of a sequence holding values of type 'a
type'a node
Type of a node holding one value of type 'a in a sequence