begin conversion to rst

This commit is contained in:
Stephen Diehl
2016-12-08 09:36:00 +00:00
parent fb6f00b90b
commit 60ca33fecb
12 changed files with 551 additions and 104 deletions
-22
View File
@@ -1,22 +0,0 @@
Tuples
======
```haskell
fst :: (a, b) -> a
```
```haskell
snd :: (a, b) -> b
```
```haskell
swap :: (a, b) -> (b, a)
```
```haskell
curry :: ((a, b) -> c) -> a -> b -> c
```
```haskell
uncurry :: (a -> b -> c) -> (a, b) -> c
```