mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-01-18 19:59:57 +01:00
8 lines
325 B
OCaml
8 lines
325 B
OCaml
(** Print trees *)
|
|
|
|
(** Print a tree to a buffer. *)
|
|
val to_buffer : ?line_prefix: string -> get_name: ('a -> string) -> get_children: ('a -> 'a list) -> Buffer.t -> 'a -> unit
|
|
|
|
(** Print a tree to a string. *)
|
|
val to_string : ?line_prefix: string -> get_name: ('a -> string) -> get_children: ('a -> 'a list) -> 'a -> string
|