mirror of
https://github.com/rjNemo/functional-programming-jargon
synced 2026-06-10 20:46:51 +00:00
Merge pull request #153 from jethrolarson/noTODO
Remove TODO entries. TODO stuff can be managed by issues
This commit is contained in:
commit
d5be05e7d3
1 changed files with 0 additions and 8 deletions
|
|
@ -344,10 +344,6 @@ addOne(2) // 3
|
||||||
addOne('some string') // Contract violated: expected int -> int
|
addOne('some string') // Contract violated: expected int -> int
|
||||||
```
|
```
|
||||||
|
|
||||||
## Guarded Functions
|
|
||||||
|
|
||||||
TODO
|
|
||||||
|
|
||||||
## Category
|
## Category
|
||||||
|
|
||||||
A category in category theory is a collection of objects and morphisms between them. In programming, typically types
|
A category in category theory is a collection of objects and morphisms between them. In programming, typically types
|
||||||
|
|
@ -734,10 +730,6 @@ const sum = (list) => list.reduce((acc, val) => acc + val, 0)
|
||||||
sum([1, 2, 3]) // 6
|
sum([1, 2, 3]) // 6
|
||||||
```
|
```
|
||||||
|
|
||||||
## Traversable
|
|
||||||
|
|
||||||
TODO
|
|
||||||
|
|
||||||
## Type Signatures
|
## Type Signatures
|
||||||
|
|
||||||
Often functions in JavaScript will include comments that indicate the types of their arguments and return values.
|
Often functions in JavaScript will include comments that indicate the types of their arguments and return values.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue