Skip to content

Instantly share code, notes, and snippets.

@t0yv0
Created February 9, 2011 10:22
Show Gist options
  • Select an option

  • Save t0yv0/818258 to your computer and use it in GitHub Desktop.

Select an option

Save t0yv0/818258 to your computer and use it in GitHub Desktop.
type Regex<'T> =
| Choose of Regex<'T> * Regex<'T>
| Concat of Regex<'T> * Regex<'T>
| Empty
| Filter of ('T -> bool)
| Star of Regex<'T>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment