utility functions

This commit is contained in:
Stephen Diehl
2016-12-10 16:01:47 +00:00
parent 00c2fce11a
commit 6cb17bb94b
8 changed files with 159 additions and 2 deletions
+4
View File
@@ -59,6 +59,10 @@ uncons :: [a] -> Maybe (a, [a])
unsnoc :: [x] -> Maybe ([x],x)
```
```haskell
list :: [b] -> (a -> b) -> [a] -> [b]
```
Sorting
---------