package owee

  1. Overview
  2. Docs
type key =
  1. | Text of string
  2. | K of string
  3. | KV of string * string
module Map : Stdlib.Map.S with type key = key
type action = node -> node list
type rules = action Map.t
val rewrite : rules -> graph -> graph
val match_key : key -> 'a label -> bool