package stog

  1. Overview
  2. Docs

Tries.

These tries store data associated to paths. A path is a list of symbols. The same path cannot be added twice.

module type S = sig ... end

Signature of the module created by the Make functor.

module Make (P : Map.OrderedType) : S with type symbol = P.t