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. forestCursorPromoteElem :: (a -> b) -> (b -> a) -> ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Forest

    Promotes the current node to the level of its parent. Example: Before:

    - a
    |- b
    |  |- c
    |- d <--
    |  |- e
    |- f
    |- g
    - h
    
    After:
    - a
    |- b
    |  |- c
    |  |- e
    |- f
    |- g
    - d <--
    - h
    

  2. forestCursorPromoteSubTree :: (a -> b) -> (b -> a) -> ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Forest

    Promotes the current node to the level of its parent. Example: Before:

    - a
    |- b
    |  |- c
    |- d <--
    |  |- e
    |- f
    |- g
    - h
    
    After:
    - a
    |- b
    |  |- c
    |- f
    |- g
    - d <--
    |- e
    - h
    

  3. forestCursorRemoveElem :: (b -> a) -> ForestCursor a b -> DeleteOrUpdate (ForestCursor a b)

    cursor Cursor.Forest

    No documentation available.

  4. forestCursorRemoveElemAndSelectPrev :: (b -> a) -> ForestCursor a b -> Maybe (DeleteOrUpdate (ForestCursor a b))

    cursor Cursor.Forest

    No documentation available.

  5. forestCursorRemoveSubTree :: (b -> a) -> ForestCursor a b -> DeleteOrUpdate (ForestCursor a b)

    cursor Cursor.Forest

    No documentation available.

  6. forestCursorRemoveSubTreeAndSelectPrev :: (b -> a) -> ForestCursor a b -> Maybe (DeleteOrUpdate (ForestCursor a b))

    cursor Cursor.Forest

    No documentation available.

  7. forestCursorSelectAbove :: (a -> b) -> (b -> a) -> ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Forest

    No documentation available.

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

    cursor Cursor.Forest

    No documentation available.

  9. forestCursorSelectBelowAtPos :: (a -> b) -> (b -> a) -> Int -> ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Forest

    No documentation available.

  10. forestCursorSelectBelowAtStart :: (a -> b) -> (b -> a) -> ForestCursor a b -> Maybe (ForestCursor a b)

    cursor Cursor.Forest

    No documentation available.

Page 101 of many | Previous | Next