Module Make.Reporter
val report : 'a Reporter.t -> 'a -> unitval finalise : _ Reporter.t -> unitfinalise t terminates rendering of the line associated with reporter t. Attempting to report to a finalised reporter will raise an exception.
type (_, _) list = | [] : ('a, 'a) Reporter.list| :: : 'a * ('b, 'c) Reporter.list -> ('a -> 'b, 'c) Reporter.list
A heterogeneous list type, used by Display for returning a list of reporters corresponding to multi-line progress displays.