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. data Consumption

    megaparsec Text.Megaparsec.Internal

    Whether the input has been consumed or not. See also: Result, Reply.

  2. NotConsumed :: Consumption

    megaparsec Text.Megaparsec.Internal

    No input was consumed

  3. psum :: (Foldable t, Plus f) => t (f a) -> f a

    semigroupoids Data.Functor.Plus

    The sum of a collection of actions, generalizing concat.

    >>> psum [Just "Hello", Nothing, Just "World"]
    Just "Hello"
    

  4. asum1 :: (Foldable1 t, Alt m) => t (m a) -> m a

    semigroupoids Data.Semigroup.Foldable

    No documentation available.

  5. getSum :: Sum a -> a

    base-compat Data.Monoid.Compat

    No documentation available.

  6. getSum :: Sum a -> a

    base-compat Data.Semigroup.Compat

    No documentation available.

  7. lazyConsume :: (MonadUnliftIO m, MonadActive m) => Source m a -> m [a]

    conduit-extra Data.Conduit.Lazy

    Use lazy I/O to consume all elements from a Source. This function relies on monadActive to determine if the underlying monadic state has been closed. Since 0.3.0

  8. sourceCmdWithConsumer :: MonadIO m => String -> ConduitT ByteString Void m a -> m (ExitCode, a)

    conduit-extra Data.Conduit.Process

    Like sourceProcessWithConsumer but providing the command to be run as a String. Requires the threaded runtime. Since 1.1.2

  9. sourceProcessWithConsumer :: MonadIO m => CreateProcess -> ConduitT ByteString Void m a -> m (ExitCode, a)

    conduit-extra Data.Conduit.Process

    Given a CreateProcess, run the process, with its output being used as a Source to feed the provided Consumer. Once the process has completed, return a tuple of the ExitCode from the process and the output collected from the Consumer. Note that, if an exception is raised by the consumer, the process is not terminated. This behavior is different from sourceProcessWithStreams due to historical reasons. Requires the threaded runtime. Since 1.1.2

  10. decompressUnconsumedInput :: DecompressStream (m :: Type -> Type) -> ByteString

    zlib Codec.Compression.Zlib.Internal

    No documentation available.

Page 86 of many | Previous | Next