Make.Path
type desc = private
| Root
| At_index of int * t
and t = private {
tag : int;
hash : int;
rev_path_desc : desc;
}
val compare : t -> t -> int
val root : t
val at_index : int -> t -> t
val concat : above:t -> under:t -> t
val to_string : t -> string