Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Truthy t where
  2. truthy :: Integer -> t
  3.  
  4. instance Truthy Integer where
  5. truthy x = x -- some computation that results in an Integer
  6.  
  7. instance Truthy Bool where
  8. truthy x = x /= 0 -- some computation that results in a Bool
  9.  
  10. Prelude> let y = truthy 17
  11. Prelude> if y then y else 42
  12. 17
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement