Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
numUnit :: Text -> Maybe (Double, Text)pandoc Text.Pandoc.ImageSize Maybe split a string into a leading number and trailing unit, e.g. "3cm" to Just (3.0, "cm")
numberLines :: FormatOptions -> !Boolskylighting-core Skylighting.Types Number lines
numberFormatter :: Text -> LocaleName -> IO NumberFormattertext-icu Data.Text.ICU Create a new NumberFormatter. See https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html for how to specify the number skeletons. And use availableLocales in order to find the allowed locale names. These usuallly look like "en", "de", "de_AT" etc. See formatIntegral and formatDouble for some examples.
numericValue :: Char -> Maybe Doubletext-icu Data.Text.ICU.Char Return the numeric value for a Unicode codepoint as defined in the Unicode Character Database. A Double return type is necessary because some numeric values are fractions, negative, or too large to fit in a fixed-width integral type.
numberFormatter :: NumberFormatStyle -> LocaleName -> NumberFormattext-icu Data.Text.ICU.Number Create and return a new NumberFormat for formatting and parsing numbers. A NumberFormat may be used to format numbers by calling unum_format, and to parse numbers by calling unum_parse. The caller must call unum_close when done to release resources used by this object.
numberFormatter :: Text -> LocaleName -> IO NumberFormattertext-icu Data.Text.ICU.NumberFormatter Create a new NumberFormatter. See https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html for how to specify the number skeletons. And use availableLocales in order to find the allowed locale names. These usuallly look like "en", "de", "de_AT" etc. See formatIntegral and formatDouble for some examples.
numElements :: Array i e -> Intghc-internal GHC.Internal.Arr The number of elements in the array.
numElementsSTArray :: STArray s i e -> Intghc-internal GHC.Internal.Arr No documentation available.
numSparks# :: State# d -> (# State# d, Int# #)ghc-internal GHC.Internal.Base Returns the number of sparks in the local spark pool.
-
ghc-internal GHC.Internal.Conc.Sync the value passed to the +RTS -N flag. This is the number of Haskell threads that can run truly simultaneously at any given time, and is typically set to the number of physical processor cores on the machine. Strictly speaking it is better to use getNumCapabilities, because the number of capabilities might vary at runtime.