definition: |
class Num a => Fractional a where (/) :: a -> a -> a recip :: a -> a fromFloat :: Float -> a recip x = 1.0 / x x / y = x * recip y |
documentation: |
--- The class `Fractional` defines numbers with a division operation. |
methods: |
["(/) 2 :: a -> a -> a","recip 1 :: a -> a","fromFloat :: Float -> a"] |
name: |
Fractional |