Created by
Valuable resource on definitions: http://adit.io/posts/2013-04-17-functors,_applicatives,_and_monads_in_pictures.html
Terms in this set (67)
Eq - Types that support equals comparisons
Ord - Types that support order comparisons (< or min...)
Show - Types that have their own way of pretty printing values
Read -Types that have their own way of parsing values from a string
Num - Types that represent numbers and common operations on them (+ or abs...)
Example: (+) (Num a) => a -> a -> a
Ord - Types that support order comparisons (< or min...)
Show - Types that have their own way of pretty printing values
Read -Types that have their own way of parsing values from a string
Num - Types that represent numbers and common operations on them (+ or abs...)
Example: (+) (Num a) => a -> a -> a