Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. forestCursorSelectPrev :: ForestCursor a -> Maybe (ForestCursor a)

    cursor Cursor.Simple.Forest

    No documentation available.

  2. forestCursorSelectPrevOnSameLevel :: ForestCursor a -> Maybe (ForestCursor a)

    cursor Cursor.Simple.Forest

    No documentation available.

  3. forestCursorSelectPrevTreeCursor :: ForestCursor a -> Maybe (ForestCursor a)

    cursor Cursor.Simple.Forest

    No documentation available.

  4. forestCursorSelectedTreeL :: forall a b f . Functor f => (TreeCursor a b -> f (TreeCursor a b)) -> ForestCursor a b -> f (ForestCursor a b)

    cursor Cursor.Simple.Forest

    No documentation available.

  5. forestCursorSelection :: ForestCursor a b -> Int

    cursor Cursor.Simple.Forest

    No documentation available.

  6. 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 <--
    

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

  8. forestCursorToggleCurrentForest :: ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Simple.Forest

    No documentation available.

  9. forestCursorToggleCurrentForestRecursively :: ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Simple.Forest

    No documentation available.

  10. for'_ :: forall t a f (es :: [Effect]) (ff :: (Type -> Type) -> Type -> Type) (c :: (Type -> Type) -> Constraint) . (Free c ff, f ~ Eff ff es, In (For t) es) => t (f a) -> f (t a)

    data-effects Data.Effect.Concurrent.Parallel

    Executes in parallel the actions stored within a Traversable container t.

Page 111 of many | Previous | Next