Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. strengthenBounded :: forall m n . (Typeable n, Integral n, Typeable m, Integral m, Bounded m, FiniteBits m) => n -> Either StrengthenFailure' m

    strongweak Strongweak.Strengthen

    Strengthen one numeric type into another. n must be "wider" than m. FiniteBits m is for error printing.

  2. newBoundedActor :: InboxLength -> ActorHandler message result -> IO (Actor message result)

    thread-supervisor Control.Concurrent.Supervisor

    Create a new actor with bounded inbox queue.

  3. newBoundedActor :: InboxLength -> ActorHandler message result -> IO (Actor message result)

    thread-supervisor Control.Concurrent.SupervisorInternal

    Create a new actor with bounded inbox queue.

  4. _BoundedInteger :: (Integral a, Bounded a, Show a) => TomlBiMap a Integer

    tomland Toml.Codec.BiMap.Conversion

    Helper BiMap for Integer and integral, bounded values.

  5. _EnumBounded :: (Show a, Enum a, Bounded a) => TomlBiMap a AnyValue

    tomland Toml.Codec.BiMap.Conversion

    BiMap for nullary sum data types (enumerations) with Show, Enum and Bounded instances. Usually used as the enumBounded combinator.

  6. _EnumBoundedText :: (Show a, Enum a, Bounded a) => TomlBiMap a Text

    tomland Toml.Codec.BiMap.Conversion

    Helper BiMap for _EnumBounded and Text.

  7. enumBounded :: (Bounded a, Enum a, Show a) => Key -> TomlCodec a

    tomland Toml.Codec.Combinator.Custom

    Codec for general nullary sum data types with a Bounded, Enum, and Show instance. This codec is similar to read but provides much better error messages than read for nullary sum types. E.g. for the same Format example from read function, but with the Toml.enumBounded "foo" codec the error for foo = "Jif" in the TOML file will look like this:

    tomland decode error:  Value is Jif but expected one of: Jpeg, Png, Gif
    

  8. mapConcurrentlyBounded :: Traversable t => Int -> (a -> IO b) -> t a -> IO (t b)

    async-extra Control.Concurrent.Async.Extra

    Span a green thread for each task, but only execute N tasks concurrently.

  9. mapConcurrentlyBounded_ :: Traversable t => Int -> (a -> IO ()) -> t a -> IO ()

    async-extra Control.Concurrent.Async.Extra

    Span a green thread for each task, but only execute N tasks concurrently. Ignore the result

  10. linesUnboundedAsciiC :: forall (m :: Type -> Type) seq . (Monad m, IsSequence seq, Element seq ~ Word8) => ConduitT seq seq m ()

    classy-prelude-yesod ClassyPrelude.Yesod

    Same as linesUnbounded, but for ASCII/binary data.

Page 48 of many | Previous | Next