Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. writeBoundedChan :: MonadConc m => BoundedChan m a -> a -> m ()

    concurrency Control.Concurrent.Classy.BoundedChan

    Write an element to the channel. If the channel is full, this routine will block until it is able to write. Blockers wait in a fair FIFO queue.

  2. writeList2BoundedChan :: MonadConc m => BoundedChan m a -> [a] -> m ()

    concurrency Control.Concurrent.Classy.BoundedChan

    Write a list of elements to the channel. If the channel becomes full, this routine will block until it can write. Competing writers may interleave with this one.

  3. cBounded :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => s -> μ α

    data-textual Data.Textual.Integral

    A shorthand for cBounded' optMinus.

  4. cBounded' :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => μ Sign -> s -> μ α

    data-textual Data.Textual.Integral

    Parse a number written in the specified positional numeral system, failing on overflow. The supplied parser is used to determine the sign of the number. Leading zeroes are not allowed.

  5. nnBounded :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => s -> μ α

    data-textual Data.Textual.Integral

    Parse a non-negative number written in the specified positional numeral system, failing on overflow.

  6. nncBounded :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => s -> μ α

    data-textual Data.Textual.Integral

    Parse a non-negative number written in the specified positional numeral system, failing on overflow. Leading zeroes are not allowed.

  7. npBounded :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => s -> μ α

    data-textual Data.Textual.Integral

    Parse a non-positive number written in the specified positional numeral system, failing on overflow.

  8. npcBounded :: (PositionalSystem s, Ord α, Bounded α, Integral α, Monad μ, CharParsing μ) => s -> μ α

    data-textual Data.Textual.Integral

    Parse a non-positive number written in the specified positional numeral system, failing on overflow. Leading zeroes are not allowed.

  9. fakeBoundedEnum :: forall a (m :: Type -> Type) . (Monad m, Enum a, Bounded a) => FakeT m a

    fakedata Faker.Combinators

    A sumtype can just use this function directly. Defined as fakeBoundedEnum = fakeEnumFromTo minBound maxBound

  10. primBounded :: BoundedPrim a -> a -> Builder

    fast-builder Data.ByteString.FastBuilder

    Turn a value of type a into a Builder, using the given BoundedPrim.

Page 33 of many | Previous | Next