You can search for identifiers within the package.
in-package search v0.2.0
Handling containers.
type tree =
| NRDF of Iri.t * Ct.t
A non-RDF resource with its IRI and content-type
| RDF of Iri.t
A RDF resource with its IRI
| CONT of Iri.t * tree list
A container with its IRI and children.
A tree of containers.
val node_text : tree -> string
Returns a string representation for the give tree node (not recursive).
tree
module type S = sig ... end
Result of the Make functor.
Make
module Make (P : Http.Http) : S
Make(Http) returns a S using the given Http implementation to perform operations.
Make(Http)
S