Library-okarin.org
Class - Haskell
Eq
class Eq a where
(==),(/=) :: a -> a -> Bool
x /= y = not (x == y)
Ord
class Eq a => Ord a where
...
Show
class Show a where
show :: a -> String