File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,6 @@ addOne(2) // 3
344344
addOne('some string') // Contract violated: expected int -> int
345345
```
346346

347-
## Guarded Functions
348-
349-
TODO
350-
351347
## Category
352348

353349
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)
734730
sum([1, 2, 3]) // 6
735731
```
736732

737-
## Traversable
738-
739-
TODO
740-
741733
## Type Signatures
742734

743735
Often functions in JavaScript will include comments that indicate the types of their arguments and return values.

0 commit comments

Comments
 (0)