You can search for identifiers within the package.
in-package search v0.2.0
Type definition of Regular Expression Abstract Syntax Tree
type re =
| Literal of string
| Epsilon
| Empty
| Union of re * re
| Concat of re * re
| Star of re