Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Ansifmt.IOSourceval print_formatted :
't. ?stylizer:Formatting.Stylizer.t ->
?parentheses:(string * string) ->
?line_end:string ->
?out:out_channel ->
't ->
using:(module Formatting.TOKENIZABLE with type t = 't) ->
unitprint_formatted ?stylizer ?line_end ?out value ~using prints value to out by formatting it with using - which provides tokenization of value - and stylizer which renders the resulting tokens into a pretty-printable string. line_end is appended at the end of the string.
Defaults if not provided:
stylizer: the default stylizer provided by ansifmtline_end: a newline (\n)out: the standard output (stdout)