Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vivekimsit/haskell-notes
Haskell notes for https://courses.edx.org/courses/DelftX/FP101x/3T2014/info
https://github.com/vivekimsit/haskell-notes
Last synced: 1 day ago
JSON representation
Haskell notes for https://courses.edx.org/courses/DelftX/FP101x/3T2014/info
- Host: GitHub
- URL: https://github.com/vivekimsit/haskell-notes
- Owner: vivekimsit
- Created: 2014-10-31T06:27:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-11T06:47:21.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T06:39:34.451Z (8 months ago)
- Size: 277 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
haskell-notes
=============Haskell notes for https://courses.edx.org/courses/DelftX/FP101x/3T2014/info
| Mathematics | Haskell |
| ------------- | ------------- |
| f(x) | f x |
| f(x, y) | f x y (or x \`f\` y)|
| f(g(x)) | f (g x) |
| f(x, g(y)) | f x (g y) |
| f(x)g(y) | f x * g y |