mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-08 03:47:59 -04:00
9 lines
116 B
OCaml
9 lines
116 B
OCaml
(** Atomic list *)
|
|
|
|
type 'a t
|
|
|
|
val make : unit -> 'a t
|
|
|
|
val add : 'a t -> 'a -> unit
|
|
|
|
val pop_all : 'a t -> 'a list
|