Notation.NotationMapThe underlying Map library
include CSig.MapS with type key = Constrexpr.notationtype key = Constrexpr.notationval empty : 'a tval is_empty : 'a t -> boolval cardinal : 'a t -> intApply the given function to the binding of the given key.
val domain : 'a t -> NotationSet.tRecover the set of keys defined in the map.
val bind : (key -> 'a) -> NotationSet.t -> 'a tbind f s transform the set x1; ...; xn into x1 := f x1; ...;
      xn := f xn.
Alias for fold, to easily track where we depend on fold order.
val height : 'a t -> intAn indication of the logarithmic size of a map
find_range in_range m Given a comparison function in_range x, that tests if x is below, above, or inside a given range filter_range returns the submap of m whose keys are in range. Note that in_range has to define a continouous range.
module Smart : sig ... endmodule Monad (M : CMap.MonadS) : sig ... endFold operators parameterized by any monad.