= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
package biotk
-
biotk
-
-
biotk.pipes
-
biotk.pipes.unix
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type tree =
| Leaf of {
text : string;
style : [ `normal | `bold | `italic ];
color : Gg.Color.t;
}
| Node of {
children : branch list;
tag : Gg.Color.t option;
}
val leaf :
?style:[ `normal | `bold | `italic ] ->
?col:Gg.Color.t ->
string ->
tree
val bnode : ?tag:Gg.Color.t -> branch -> branch -> tree
val node : ?tag:Gg.Color.t -> branch list -> tree
val branch : ?col:Gg.Color.t -> float -> tree -> branch
val draw_tree : tree -> Biotk_croquis.Croquis.Picture.t
val draw_branch : branch -> Biotk_croquis.Croquis.Picture.t