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. treeCursorToggleCurrentForest :: TreeCursor a b -> Maybe (TreeCursor a b)

    cursor Cursor.Tree.Collapse

    No documentation available.

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

    cursor Cursor.Tree.Collapse

    No documentation available.

  3. 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 (<=).

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

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

  6. nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]

    data-ordlist Data.List.Ordered

    The nubSortBy function is the non-overloaded version of nubSort.

  7. nubSortOn :: Ord b => (a -> b) -> [a] -> [a]

    data-ordlist Data.List.Ordered

    The nubSortOn function provides decorate-sort-undecorate for nubSort.

  8. nubSortOn' :: Ord b => (a -> b) -> [a] -> [a]

    data-ordlist Data.List.Ordered

    This variant of nubSortOn recomputes the sorting key for each comparison

  9. toUnsortedList :: Heap a -> [a]

    heaps Data.Heap

    O(n). Returns the elements in the heap in some arbitrary, very likely unsorted, order.

    >>> toUnsortedList (fromList [3,1,2])
    [1,3,2]
    
    fromList . toUnsortedListid
    

  10. postingsOrTransactionsReportAsText :: Bool -> CliOpts -> (Int -> Int -> (a, [WideBuilder], [WideBuilder]) -> Builder) -> (a -> MixedAmount) -> (a -> MixedAmount) -> [a] -> Builder

    hledger Hledger.Cli.Utils

    Render a PostingsReport or AccountTransactionsReport as Text, determining the appropriate starting widths and increasing as necessary.

Page 137 of many | Previous | Next