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.
treeCursorToggleCurrentForest :: TreeCursor a b -> Maybe (TreeCursor a b)cursor Cursor.Tree.Collapse No documentation available.
treeCursorToggleCurrentForestRecursively :: TreeCursor a b -> Maybe (TreeCursor a b)cursor Cursor.Tree.Collapse No documentation available.
isSorted :: Ord a => [a] -> Booldata-ordlist Data.List.Ordered The isSorted predicate returns True if the elements of a list occur in non-descending order, equivalent to isSortedBy (<=).
isSortedBy :: (a -> a -> Bool) -> [a] -> Booldata-ordlist Data.List.Ordered The isSortedBy function returns True iff the predicate returns true for all adjacent pairs of elements in the list.
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.
nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]data-ordlist Data.List.Ordered The nubSortBy function is the non-overloaded version of nubSort.
nubSortOn :: Ord b => (a -> b) -> [a] -> [a]data-ordlist Data.List.Ordered The nubSortOn function provides decorate-sort-undecorate for nubSort.
nubSortOn' :: Ord b => (a -> b) -> [a] -> [a]data-ordlist Data.List.Ordered This variant of nubSortOn recomputes the sorting key for each comparison
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 . toUnsortedList ≡ id
-
hledger Hledger.Cli.Utils Render a PostingsReport or AccountTransactionsReport as Text, determining the appropriate starting widths and increasing as necessary.