Haskell Programming

Functions bind tighter than operations
Click the card to flip 👆
1 / 67
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