Yocaml.DepsSourceA dependency set describes all the files required to build an artifact.
The representation of a set of dependencies, containing Path.t. Under the bonnet, dependencies are defined by a Set.
A dependency set is a monoid with the union of two sets as the internal composition operator and the empty set as the neutral element.
concat a b constructs the union of two sets of dependencies. concat a b = concat b a.
empty returns the neutral element of the monoid. It the empty set and concat neutral a = concat a neutral = a.
Retrieves information about sets of dependencies.
get_mtimes deps Returns a list of modification dates for a set of dependencies.
Supports serialization and deserialization of dependency sets.
from_sexp sexp try to converts a Sexp into a set of dependencies.
Pretty-printer for t.