type pattern =
| Epsilon |
| Star of pattern |
| Class of character_class |
| Concat of pattern * pattern |
| Union of pattern list |
| Word of string |
and character_class = (char * char) Bool.boolean
Ocamlbuild_pack.Glob_ast
type pattern =
| Epsilon |
| Star of pattern |
| Class of character_class |
| Concat of pattern * pattern |
| Union of pattern list |
| Word of string |
and character_class = (char * char) Bool.boolean