module CCRingBuffer:sig
..end
Useful for IO, or as a bounded-size alternative to Queue
when
batch operations are needed.
status: experimental
Since 1.3
module Array:sig
..end
module type S =sig
..end
module Byte:S
with module Array = Array.Byte
module MakeFromArray(
A
:
Array.S
)
:S
with module Array = A
module Make(
X
:
sig
type
t
val dummy :t
end
)
:S
with type Array.elt = X.t and type Array.t = X.t array