You can search for identifiers within the package.
in-package search v0.2.0
type t = [
| `Empty
| `Pad of t
| `Text of string
| `Vlist of t list
| `Hlist of t list
| `Table of t array array
| `Tree of t * t list
]
val of_ktree : t ktree -> t
Helper to convert trees
val map_ktree : ('a -> t) -> 'a ktree -> t
Helper to map trees into recursive boxes
val to_box : t -> box
val sprintf : ('a, Buffer.t, unit, t) format4 -> 'a
Formatting for `Text
`Text
val asprintf : ('a, Format.formatter, unit, t) format4 -> 'a
Formatting for `Text.