Module Pp


module Pp: sig  end
Iterator functions used in pretty printers

val pp_list : ('a -> unit) -> (unit -> 'b) -> 'a list -> unit
pp_list f sep l pretty print the list l of elements which are individualy pretty printed by the given function f, and separated by the the given separator printer sep.