owee
Owee_graph.Rewrite
type key =
| Text of string
| K of string
| KV of string * string
module Map : 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