console functions

This commit is contained in:
Stephen Diehl
2016-12-10 14:51:33 +00:00
parent 8995aa71f3
commit 00c2fce11a
6 changed files with 255 additions and 14 deletions
+14
View File
@@ -0,0 +1,14 @@
Hashing
=======
```haskell
hashWithSalt :: Hashable a => Int -> a -> Int
```
```haskell
hash :: Hashable a => a -> Int
```
```haskell
hashUsing :: Hashable b => (a -> b) -> Int -> a -> Int
```