Home
last modified time | relevance | path

Searched defs:fromRat (Results 1 – 1 of 1) sorted by relevance

/dports/lang/ghc/ghc-8.10.7/libraries/base/GHC/
H A DFloat.hs935 fromRat x = x' function
965 "fromRat/Float" fromRat = (fromRational :: Rational -> Float) function
966 "fromRat/Double" fromRat = (fromRational :: Rational -> Double) function
973 fromRat (n :% 0) | n > 0 = 1/0 -- +Infinity function
977 fromRat (n :% d) | n > 0 = fromRat' (n :% d) function
991 fromRat' x = r function