You can search for identifiers within the package.
in-package search v0.2.0
stk_xml
Doc.TI
Module to build a text index, allowing text-based search in a XML view document.
type tree =
| L of {
text : string;
pos : int;
len : int;
node : node;
}
| N of {
nodes : node list;
children : tree list;
type t = {
fulltext : string;
tree : tree list;
val utf8_length : string -> int
val build_text_index : node list -> t