Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. type Consumer i (m :: Type -> Type) r = forall o . () => ConduitT i o m r

    classy-prelude-yesod ClassyPrelude.Yesod

    A component which consumes a stream of input values and produces a final result, regardless of the output stream. A Consumer is a generalization of a Sink, and can be used as either a Sink or a Conduit. Since 1.0.0

  2. asum :: (Foldable t, Alternative f) => t (f a) -> f a

    classy-prelude-yesod ClassyPrelude.Yesod

    The sum of a collection of actions using (<|>), generalizing concat. asum is just like msum, but generalised to Alternative.

    Examples

    Basic usage:
    >>> asum [Just "Hello", Nothing, Just "World"]
    Just "Hello"
    

  3. asumC :: forall (m :: Type -> Type) f a o . (Monad m, Alternative f) => ConduitT (f a) o m (f a)

    classy-prelude-yesod ClassyPrelude.Yesod

    Alternatively combine all values in the stream.

  4. isEntitySum :: EntityDef -> Bool

    classy-prelude-yesod ClassyPrelude.Yesod

    No documentation available.

  5. osum :: (MonoFoldable mono, Num (Element mono)) => mono -> Element mono

    classy-prelude-yesod ClassyPrelude.Yesod

    osum computes the sum of the numbers of a monomorphic container.

  6. toConsumer :: forall (m :: Type -> Type) a b o . Monad m => ConduitT a Void m b -> ConduitT a o m b

    classy-prelude-yesod ClassyPrelude.Yesod

    Generalize a Sink to a Consumer. Since 1.0.0

  7. type ObjectSum (k :: Type -> Type -> Type) a b = (Category k, Object k a, Object k b, SumObjects k a b, Object k a + b)

    constrained-categories Control.Category.Constrained

    No documentation available.

  8. boolAsSum :: (CoCartesian k, ObjectSum k u u, u ~ UnitObject k, Object k Bool) => k Bool (u + u)

    constrained-categories Control.Category.Constrained

    No documentation available.

  9. boolFromSum :: (CoCartesian k, ObjectSum k u u, u ~ UnitObject k, Object k Bool) => k (u + u) Bool

    constrained-categories Control.Category.Constrained

    No documentation available.

  10. maybeAsSum :: (CoCartesian k, ObjectSum k u a, u ~ UnitObject k, Object k (Maybe a)) => k (Maybe a) (u + a)

    constrained-categories Control.Category.Constrained

    No documentation available.

Page 237 of many | Previous | Next