Version dev
This is a preliminary version of the documentation. Help us to improve it by filling tickets. We are looking for native english speakers to proof read the documentation. Contact us!
module Dlist:Doubly-linked lists with maximum size.sig..end
type 'a t type 'a node val create : int -> 'a tval add : 'a -> 'a t -> 'a optionval remove : 'a node -> unitval up : 'a node -> unitval newest : 'a t -> 'a node optionval oldest : 'a t -> 'a node optionval size : 'a t -> intval maxsize : 'a t -> intval value : 'a node -> 'aval list_of : 'a node -> 'a t optionval remove_n_oldest : 'a t -> int -> 'a listval set_maxsize : 'a t -> int -> 'a listval set_finaliser : ('a node -> unit) -> 'a t -> unitval get_finaliser : 'a t -> 'a node -> unit