Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. numeric :: BeamSqlBackend be => Maybe (Word, Maybe Word) -> DataType be Scientific

    beam-core Database.Beam.Query.DataTypes

    SQL92 NUMERIC data type

  2. numStacks :: LegendOptions -> Int

    chart-svg Chart.Hud

    No documentation available.

  3. numTicks' :: Lens' Tick (Maybe Int)

    chart-svg Chart.Hud

    Lens between number of ticks and a Tick. Only for TickRound and TickExact

  4. numBuffered :: ConcurrencyState -> IORefId -> Int

    dejafu Test.DejaFu.Types

    Check how many buffered writes an IORef has.

  5. number :: Scientific -> Greskell Scientific

    greskell-core Data.Greskell.Greskell

    Arbitrary precision number literal, like "123e8".

  6. number :: ColourPrefs -> [Highlight]

    hscolour Language.Haskell.HsColour

    No documentation available.

  7. number :: ColourPrefs -> [Highlight]

    hscolour Language.Haskell.HsColour.Colourise

    No documentation available.

  8. numLoop :: (Num a, Ord a, Monad m) => a -> a -> (a -> m ()) -> m ()

    loop Control.Loop

    numLoop start end f: Loops over a contiguous numerical range, including end. Does nothing when not start <= end. It uses (+ 1) so for most integer types it has no bounds (overflow) check.

  9. numLoopFold :: (Num a, Eq a) => a -> a -> acc -> (acc -> a -> acc) -> acc

    loop Control.Loop

    numLoopFold start end acc0 f: A pure fold over a contiguous numerical range, including end. It uses (+ 1) so for most integer types it has no bounds (overflow) check. Care is taken that acc0 not be strictly evaluated if unless done so by f.

  10. numLoopState :: (Num a, Eq a, Monad m) => a -> a -> b -> (b -> a -> m b) -> m b

    loop Control.Loop

    numLoopState start end f initialState: Loops over a contiguous numerical range, including end threading a state through the computation. It uses (+ 1) so for most integer types it has no bounds (overflow) check.

Page 85 of many | Previous | Next