mirror of
https://github.com/rjNemo/functional-programming-jargon
synced 2026-06-06 02:26:43 +00:00
adding bind and return note to Monad entry
This commit is contained in:
parent
468cbc118c
commit
b23d42386b
1 changed files with 3 additions and 0 deletions
|
|
@ -283,6 +283,9 @@ The identity value is empty array `[]`
|
|||
//Contrast to map
|
||||
['cat,dog','fish,bird'].map(a => a.split(',')) // [['cat','dog'], ['fish','bird']]
|
||||
```
|
||||
|
||||
You may also see `of` and `chain` referred to as `return` and `bind` in languages which provide Monad-like constructs as part of their standard library (e.g. Haskell, F#), [the Monad Wikipedia entry](https://en.wikipedia.org/wiki/Monad_%28functional_programming%29) and other literature. Also, remember that JavaScript already has constructs called `return` and `bind`, but the functions mentioned in this context are specifically related to Monads.
|
||||
|
||||
---
|
||||
|
||||
## Comonad
|
||||
|
|
|
|||
Loading…
Reference in a new issue