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.
forestCursorSelection :: ForestCursor a b -> Intcursor Cursor.Simple.Forest No documentation available.
forestCursorSwapNext :: ForestCursor a b -> Maybe (ForestCursor a b)cursor Cursor.Simple.Forest Swaps the current node with the next node on the same level Example: Before:
- a <-- - b
After:- b - a <--
forestCursorSwapPrev :: ForestCursor a b -> Maybe (ForestCursor a b)cursor Cursor.Simple.Forest Swaps the current node with the previous node on the same level Example: Before:
- a - b <--
After:- b <-- - a
forestCursorToggleCurrentForest :: ForestCursor a b -> Maybe (ForestCursor a b)cursor Cursor.Simple.Forest No documentation available.
forestCursorToggleCurrentForestRecursively :: ForestCursor a b -> Maybe (ForestCursor a b)cursor Cursor.Simple.Forest No documentation available.
-
data-effects Data.Effect.Concurrent.Parallel Executes in parallel the actions stored within a Traversable container t.
-
data-effects Data.Effect.Concurrent.Parallel Converts the Traversable container-based parallel computation effect For into the Applicative-based parallel computation effect Parallel.
forkBoundThread :: MonadDejaFu m => Maybe (m (BoundThread m a))dejafu Test.DejaFu.Types Fork a new bound thread, if the monad supports them.
-
effectful Effectful.Concurrent Lifted forkFinally.
forkIO :: forall (es :: [Effect]) . (HasCallStack, Concurrent :> es) => Eff es () -> Eff es ThreadIdeffectful Effectful.Concurrent Lifted forkIO.