package volgo

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Graph.DescendanceSource

Given two nodes we can determine whether one is an ancestor of the other. We encode the four cases of the result into a variant type named Descendance.t.

Sourcetype t =
  1. | Same_node
  2. | Strict_ancestor
  3. | Strict_descendant
  4. | Other
Sourceval all : t list
Sourceval compare : t -> t -> int
Sourceval equal : t -> t -> bool
Sourceval hash : t -> int
Sourceval seeded_hash : int -> t -> int
Sourceval sexp_of_t : t -> Volgo_stdlib.Sexp.t
Sourceval to_dyn : t -> Volgo_stdlib.Dyn.t