Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. ArchOSAny :: ArchOS

    debian Debian.Relation

    No documentation available.

  2. waitAny :: Serializable a => [Async a] -> Process (Async a, AsyncResult a)

    distributed-process-async Control.Distributed.Process.Async

    Wait for any of the supplied Asyncs to complete. If multiple Asyncs complete, then the value returned corresponds to the first completed Async in the list. NB: Unlike AsyncChan, Async does not discard its AsyncResult once read, therefore the semantics of this function are different to the former. Specifically, if asyncs = [a1, a2, a3] and (AsyncDone _) = a1 then the remaining a2, a3 will never be returned by waitAny.

  3. waitAnyCancel :: Serializable a => [Async a] -> Process (Async a, AsyncResult a)

    distributed-process-async Control.Distributed.Process.Async

    Like waitAny, but also cancels the other asynchronous operations as soon as one has completed.

  4. waitAnySTM :: [Async a] -> IO (Async a, AsyncResult a)

    distributed-process-async Control.Distributed.Process.Async

    STM version of waitAny.

  5. waitAnyTimeout :: Serializable a => Int -> [Async a] -> Process (Maybe (AsyncResult a))

    distributed-process-async Control.Distributed.Process.Async

    Like waitAny but times out after the specified delay.

  6. newtype Many a

    djot Djot.AST

    No documentation available.

  7. Many :: Seq a -> Many a

    djot Djot.AST

    No documentation available.

  8. unMany :: Many a -> Seq a

    djot Djot.AST

    No documentation available.

  9. skipMany :: Parser s a -> Parser s ()

    djot Djot.Parse

    Apply parser 0 or more times, discarding result.

  10. catchAny :: MonadBaseControl IO m => m a -> (SomeException -> m a) -> m a

    enclosed-exceptions Control.Exception.Enclosed

    A version of catch which is specialized for any exception. This simplifies usage as no explicit type signatures are necessary. Note that since version 0.5.9, this function now has proper support for asynchronous exceptions, by only catching exceptions generated by the internal (enclosed) action. Since 0.5.6

Page 191 of many | Previous | Next