Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
numberToInteger :: Number -> Maybe Integerconfig-value Config Convert a number to a Integer. Warning: This can use a lot of memory in the case of very large exponent parts.
numberToRational :: Number -> Rationalconfig-value Config Convert a number to a Rational. Warning: This can use a lot of memory in the case of very large exponent parts.
number :: Applicative f => (Number -> f Number) -> Value a -> f (Value a)config-value Config.Lens numberCoefficient :: Number -> !Rationalconfig-value Config.Number No documentation available.
numberRadix :: Number -> !Radixconfig-value Config.Number No documentation available.
numberToInteger :: Number -> Maybe Integerconfig-value Config.Number Convert a number to a Integer. Warning: This can use a lot of memory in the case of very large exponent parts.
numberToRational :: Number -> Rationalconfig-value Config.Number Convert a number to a Rational. Warning: This can use a lot of memory in the case of very large exponent parts.
number :: (PositionalSystem s, Num α, Monad μ, CharParsing μ) => s -> μ αdata-textual Data.Textual.Integral number' :: (PositionalSystem s, Num α, Monad μ, CharParsing μ) => μ Sign -> s -> μ αdata-textual Data.Textual.Integral Parse a number written in the specified positional numeral system. The supplied parser is used to determine the sign of the number.
numberUpTo :: (PositionalSystem s, Num α, Monad μ, CharParsing μ) => s -> Int -> μ αdata-textual Data.Textual.Integral A shorthand for numberUpTo' optMinus.