Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save t0yv0/818268 to your computer and use it in GitHub Desktop.
module NFA =
type State<'T> =
| Match
| Branch of State<'T> * State<'T>
| Read of ('T -> bool) * State<'T>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment