Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. forkTry :: IO () -> IO ThreadId

    network-transport-tests Network.Transport.Tests.Auxiliary

    Like fork, but throw exceptions in the child thread to the parent

  2. forEffects :: Monad m => ((t, [t]) -> r) -> (t1 -> AmbT t m t) -> AmbT t m t1 -> m r

    nondeterminism Control.Monad.Amb

    A low-level internal function which executes a nondeterministic computation for its nondeterministic side-effects, such as its ability to produce different results.

  3. forkIO :: IO () -> IO ThreadId

    pipes-concurrency Pipes.Concurrent

    Creates a new thread to run the IO computation passed as the first argument, and returns the ThreadId of the newly created thread. The new thread will be a lightweight, unbound thread. Foreign calls made by this thread are not guaranteed to be made by any particular OS thread; if you need foreign calls to be made by a particular OS thread, then use forkOS instead. The new thread inherits the masked state of the parent (see mask). The newly created thread has an exception handler that discards the exceptions BlockedIndefinitelyOnMVar, BlockedIndefinitelyOnSTM, and ThreadKilled, and passes all other exceptions to the uncaught exception handler. WARNING: Exceptions in the new thread will not be rethrown in the thread that created it. This means that you might be completely unaware of the problem if/when this happens. You may want to use the async library instead.

  4. forLockingClause :: HeadedParsec Void Text ForLockingClause

    postgresql-syntax PostgresqlSyntax.Parsing

    References

    for_locking_clause:
    | for_locking_items
    | FOR READ ONLY
    for_locking_items:
    | for_locking_item
    | for_locking_items for_locking_item
    

  5. forLockingItem :: HeadedParsec Void Text ForLockingItem

    postgresql-syntax PostgresqlSyntax.Parsing

    References

    for_locking_item:
    | for_locking_strength locked_rels_list opt_nowait_or_skip
    locked_rels_list:
    | OF qualified_name_list
    | EMPTY
    opt_nowait_or_skip:
    | NOWAIT
    | SKIP LOCKED
    | EMPTY
    

  6. forLockingStrength :: (Token s ~ Char, Tokens s ~ Text, Ord e, Stream s) => HeadedParsec e s ForLockingStrength

    postgresql-syntax PostgresqlSyntax.Parsing

    References

    for_locking_strength:
    | FOR UPDATE
    | FOR NO KEY UPDATE
    | FOR SHARE
    | FOR KEY SHARE
    

  7. forLockingClause :: ForLockingClause -> TextBuilder

    postgresql-syntax PostgresqlSyntax.Rendering

    No documentation available.

  8. forLockingItem :: ForLockingItem -> TextBuilder

    postgresql-syntax PostgresqlSyntax.Rendering

    No documentation available.

  9. forLockingStrength :: IsString a => ForLockingStrength -> a

    postgresql-syntax PostgresqlSyntax.Rendering

    No documentation available.

  10. force :: Write -> Write

    ptr-poker PtrPoker.Write

    Force the evaluation of a write. Useful when a complex write is reused multiple times to avoid recomputing its structure.

Page 142 of many | Previous | Next