Operational: Difference between revisions
Line 20: | Line 20: | ||
* Documentation | * Documentation | ||
** [http://themonadreader.wordpress.com/2010/01/26/issue-15/ The Operational Monad Tutorial] - Introductory document explaining the concept. | ** [http://themonadreader.wordpress.com/2010/01/26/issue-15/ The Operational Monad Tutorial] - Introductory document explaining the concept. | ||
** [ | ** [https://github.com/HeinrichApfelmus/operational/tree/master/doc Library documentation] - How to use the libary proper; documents changes with respect to the tutorial. | ||
** [http://hackage.haskell.org/package/operational/ API reference] on hackage. | ** [http://hackage.haskell.org/package/operational/ API reference] on hackage. | ||
** '''[https://github.com/HeinrichApfelmus/operational/tree/master/doc/examples#readme Example code]''' - | ** '''[https://github.com/HeinrichApfelmus/operational/tree/master/doc/examples#readme Example code]''' - Extensive collection of working code examples. | ||
* <span id="feedback">Feedback</span> and Contact | * <span id="feedback">Feedback</span> and Contact | ||
** Maintainer: [http://apfelmus.nfshost.com/ Heinrich Apfelmus] <apfelmus at quantentunnel de> | ** Maintainer: [http://apfelmus.nfshost.com/ Heinrich Apfelmus] <apfelmus at quantentunnel de> |
Revision as of 14:28, 4 December 2013
What is it?
The operational library makes it easy to implement monads with tricky control flow.
This is very useful for: writing web applications in a sequential style, programming games with a uniform interface for human and AI players and easy replay, implementing fast parser monads, designing monadic DSLs, etc.
For instance, imagine that you want to write a web application where the user is guided through a sequence of tasks ("wizard"). To structure your application, you can use a custom monad that supports an instruction askUserInput :: CustomMonad UserInput
. This command sends a web form to the user and returns a result when he submits the form. However, you don't want your server to block while waiting for the user, so you have to suspend the computation and resume it at some later point. Sounds tricky to implement? This library makes it easy.
The idea is to identify a set of primitive instructions and to specify their operational semantics. Then, the library makes sure that the monad laws hold automatically. In the web application example, the primitive instruction would be AskUserInput
.
Any monad can be implemented in this way. Ditto for monad transformers.
A thorough introduction to the ideas behind this library is given in "The Operational Monad Tutorial", published in Issue 15 of the Monad.Reader.
Releases and Resources
- Download
- operational - latest version on hackage
- source code on github
- Documentation
- The Operational Monad Tutorial - Introductory document explaining the concept.
- Library documentation - How to use the libary proper; documents changes with respect to the tutorial.
- API reference on hackage.
- Example code - Extensive collection of working code examples.
- Feedback and Contact
- Maintainer: Heinrich Apfelmus <apfelmus at quantentunnel de>
- Issue Tracker
- Ask a question on StackOverflow