ocaml-opentelemetry/src/client-ocurl/AList.mli
Simon Cruanes e5ad99f770
rename dir
2022-10-03 12:20:59 -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