package spotlib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Spotlib.XformatSource

Sourceval stdout : t
Sourceval stderr : t
Sourceval list : (unit, t, unit) format -> (t -> 'a -> unit) -> t -> 'a list -> unit
Sourceval option : (t -> 'a -> unit) -> t -> 'a option -> unit
Sourceval lazy_ : (t -> 'a -> unit) -> t -> 'a Lazy.t -> unit
Sourceval hbox : t -> unit -> unit
Sourceval vbox : t -> int -> unit
Sourceval hvbox : t -> int -> unit
Sourceval hovbox : t -> int -> unit
Sourceval box : t -> int -> unit
Sourceval tag : t -> string -> unit
Sourceval tbox : t -> unit -> unit
Sourceval close_box : t -> unit -> unit
Sourceval close_tag : t -> unit -> unit
Sourceval close_tbox : t -> unit -> unit
Sourceval string : t -> string -> unit
Sourceval as_ : t -> int -> string -> unit
Sourceval int : t -> int -> unit
Sourceval float : t -> float -> unit
Sourceval char : t -> char -> unit
Sourceval bool : t -> bool -> unit
Sourceval break : t -> int -> int -> unit
Sourceval tbreak : t -> int -> int -> unit
Sourceval cut : t -> unit
Sourceval space : t -> unit
Sourceval force_newline : t -> unit
Sourceval flush : t -> unit
Sourceval newline : t -> unit
Sourceval if_newline : t -> unit
Sourceval tab : t -> unit
Sourceval set_tab : t -> unit -> unit
Sourceval set_tags : t -> bool -> unit
Sourceval set_print_tags : t -> bool -> unit
Sourceval set_mark_tags : t -> bool -> unit
Sourceval print_tags : t -> unit -> bool
Sourceval mark_tags : t -> unit -> bool
Sourceval set_margin : t -> int -> unit
Sourceval margin : t -> unit -> int
Sourceval set_max_indent : t -> int -> unit
Sourceval max_indent : t -> unit -> int
Sourceval set_max_boxes : t -> int -> unit
Sourceval max_boxes : t -> unit -> int
Sourceval over_max_boxes : t -> unit -> bool
Sourceval set_ellipsis_text : t -> string -> unit
Sourceval ellipsis_text : t -> unit -> string
Sourceval set_formatter_out_channel : t -> out_channel -> unit
Sourceval set_formatter_output_functions : t -> (string -> int -> int -> unit) -> (unit -> unit) -> unit
Sourceval formatter_output_functions : t -> unit -> (string -> int -> int -> unit) * (unit -> unit)
Sourceval set_formatter_out_functions : t -> Format.formatter_out_functions -> unit
Sourceval formatter_out_functions : t -> unit -> Format.formatter_out_functions
Sourceval set_formatter_tag_functions : t -> Format.formatter_tag_functions -> unit
Sourceval formatter_tag_functions : t -> unit -> Format.formatter_tag_functions
Sourceval of_out_channel : out_channel -> t
Sourceval to_string : (Format.formatter -> 'a -> unit) -> 'a -> string
Sourceval sprintf : ('a, t, unit, string) format4 -> 'a

sprintf with a better type than the orignal

Sourceval ksprintf : (string -> 'a) -> ('b, t, unit, 'a) format4 -> 'b