13 Dec
2013
13 Dec
'13
3:39 a.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