
12 Dec
2013
12 Dec
'13
2:39 p.m.
EatsKittens
Is there a way to add a method to a typeclass like num to implement this concept? A function that converts any number to floats?
Does the following do what you expect? realToFrac :: (Fractional b, Real a) => a -> b realToFrac' :: (Real a) => a -> Float realToFrac' = realToFrac :: (Real a) => a -> Float Cheers, - Ben