mirror of
https://github.com/rjNemo/functional-programming-jargon
synced 2026-06-06 02:26:43 +00:00
Remove TODO entries. TODO stuff can be managed by issues
This commit is contained in:
parent
6256c79347
commit
4f869c86d9
1 changed files with 0 additions and 12 deletions
12
readme.md
12
readme.md
|
|
@ -256,14 +256,6 @@ const predicate = (a) => a > 2;
|
|||
[1, 2, 3, 4].filter(predicate); // [3, 4]
|
||||
```
|
||||
|
||||
## Contracts
|
||||
|
||||
TODO
|
||||
|
||||
## Guarded Functions
|
||||
|
||||
TODO
|
||||
|
||||
## Categories
|
||||
|
||||
Objects with associated functions that adhere to certain rules. E.g. [Monoid](#monoid)
|
||||
|
|
@ -626,10 +618,6 @@ const sum = (list) => list.reduce((acc, val) => acc + val, 0);
|
|||
sum([1, 2, 3]) // 6
|
||||
```
|
||||
|
||||
## Traversable
|
||||
|
||||
TODO
|
||||
|
||||
## Type Signatures
|
||||
|
||||
Often functions in JavaScript will include comments that indicate the types of their arguments and return values.
|
||||
|
|
|
|||
Loading…
Reference in a new issue