https://github.com/thma/applicativeevaluator
Simple Expression evaluator meets the Applicative Functor
https://github.com/thma/applicativeevaluator
Last synced: over 1 year ago
JSON representation
Simple Expression evaluator meets the Applicative Functor
- Host: GitHub
- URL: https://github.com/thma/applicativeevaluator
- Owner: thma
- License: bsd-3-clause
- Created: 2018-09-21T19:51:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-02T06:51:28.000Z (over 1 year ago)
- Last Synced: 2025-02-09T17:32:59.182Z (over 1 year ago)
- Language: Haskell
- Size: 4.88 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ApplicativeEvaluator
I was rereading the Typeclassopedia (https://wiki.haskell.org/Typeclassopedia) and in the section of applicative functor I came accross the link to classic paper of McBride and Paterson: http://www.staff.city.ac.uk/~ross/papers/Applicative.pdf
(longer version http://strictlypositive.org/Idiom.pdf).
As a practical programmer reading a paper is not enough, to really grog the stuff I'm reading I must get my hands dirty with some real code.