Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. `forall a. a`
  2. any value
  3.  
  4. `forall a. a -> a -> a`
  5. a function that returns the identity function
  6.  
  7. `forall a. (Ord a) => [a] -> Boolean`
  8. any function of the format
  9. ```javascript
  10. function (dict) {
  11. return function (as) {
  12. // implementation including ord(dict)(a)
  13. // which returns true or false
  14. };
  15. };
  16. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement