Skip to content

Instantly share code, notes, and snippets.

@dtchepak
Created July 1, 2013 07:44
Show Gist options
  • Save dtchepak/5899034 to your computer and use it in GitHub Desktop.
Save dtchepak/5899034 to your computer and use it in GitHub Desktop.
data Consumer i o = C { consume :: Maybe i -> Result i o }
data Result i o =
Done o
| Cont (Consumer i o)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment