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.
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.
CustomSort :: DataValues -> SortPropertyhvega Graphics.Vega.VegaLite Custom sort order listing data values explicitly.
FSort :: [SortProperty] -> FacetChannelhvega Graphics.Vega.VegaLite Sort order for the encoded field.
MSort :: [SortProperty] -> MarkChannelhvega Graphics.Vega.VegaLite Sort order.
OSort :: [SortProperty] -> OrderChannelhvega Graphics.Vega.VegaLite Sort order for field when encoding with an order channel.
PSort :: [SortProperty] -> PositionChannelhvega Graphics.Vega.VegaLite Sort order for field when encoding with a position channel.