Fpath.Set
Path sets.
type t = set
val pp :
?sep:(Stdlib.Format.formatter -> unit -> unit) ->
(Stdlib.Format.formatter -> path -> unit) ->
Stdlib.Format.formatter ->
set ->
unit
pp ~sep pp_elt ppf ps
formats the elements of ps
on ppf
. Each element is formatted with pp_elt
and elements are separated by ~sep
(defaults to Format.pp_print_cut
). If the set is empty leaves ppf
untouched.
val dump : Stdlib.Format.formatter -> set -> unit
dump ppf ps
prints an unspecified representation of ps
on ppf
.