ocaml-opentelemetry/src/client/AList.mli
Simon Cruanes b676783100
format
2022-05-05 12:09:19 -04:00

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