= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package containers
-
containers
-
containers.data
-
containers.monomorphic
-
containers.sexp
-
containers.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Circular Buffer (Deque)
Useful for IO, or as a bounded-size alternative to Queue
when batch operations are needed.
status: experimental
Change in the API to provide only a bounded buffer since 1.3
- since 0.9
Underlying Array
module Array : sig ... end
The abstract type for arrays
module type S = sig ... end
module Byte : S with module Array = Array.Byte
An efficient byte based ring buffer
Makes a ring buffer module with the given array type
ON THIS PAGE