Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

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

    cursor Cursor.Simple.Forest

    No documentation available.

  2. mapCursorToggleSelected :: MapCursor k v -> MapCursor k v

    cursor Cursor.Simple.Map

    No documentation available.

  3. keyValueCursorToggleSelected :: KeyValueCursor k v -> KeyValueCursor k v

    cursor Cursor.Simple.Map.KeyValue

    No documentation available.

  4. treeCursorToggleCurrentForest :: TreeCursor a b -> Maybe (TreeCursor a b)

    cursor Cursor.Simple.Tree

    No documentation available.

  5. treeCursorToggleCurrentForestRecursively :: TreeCursor a b -> Maybe (TreeCursor a b)

    cursor Cursor.Simple.Tree

    No documentation available.

  6. treeCursorToggleCurrentForest :: TreeCursor a b -> Maybe (TreeCursor a b)

    cursor Cursor.Tree.Collapse

    No documentation available.

  7. treeCursorToggleCurrentForestRecursively :: TreeCursor a b -> Maybe (TreeCursor a b)

    cursor Cursor.Tree.Collapse

    No documentation available.

  8. isSorted :: Ord a => [a] -> Bool

    data-ordlist Data.List.Ordered

    The isSorted predicate returns True if the elements of a list occur in non-descending order, equivalent to isSortedBy (<=).

  9. isSortedBy :: (a -> a -> Bool) -> [a] -> Bool

    data-ordlist Data.List.Ordered

    The isSortedBy function returns True iff the predicate returns true for all adjacent pairs of elements in the list.

  10. nubSort :: Ord a => [a] -> [a]

    data-ordlist Data.List.Ordered

    The nubSort function is equivalent to nub . sort, except that duplicates are removed as it sorts. It is essentially the same implementation as Data.List.sort, with merge replaced by union. Thus the performance of nubSort should better than or nearly equal to sort alone. It is faster than both sort and nub . sort when the input contains significant quantities of duplicated elements.

Page 128 of many | Previous | Next