mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-09 12:23:32 -04:00
14 lines
262 B
OCaml
14 lines
262 B
OCaml
(** List of lists with length *)
|
|
|
|
type 'a t
|
|
|
|
val create : unit -> 'a t
|
|
|
|
val push : 'a t -> 'a list -> unit
|
|
|
|
val len : _ t -> int
|
|
|
|
val time_started : _ t -> Mtime.t
|
|
(** Time at which the batch most recently became non-empty *)
|
|
|
|
val pop_all : 'a t -> 'a list list
|