Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
hledger-lib Hledger.Reports.MultiBalanceReport A sorting helper: sort a list of things (eg report rows) keyed by account name to match the provided ordering of those same account names.
-
hledger-lib Hledger.Reports.ReportOptions No documentation available.
sort_amount :: HasReportOptsNoUpdate c => Lens' c Boolhledger-lib Hledger.Reports.ReportOptions No documentation available.
sort_amount_ :: ReportOpts -> Boolhledger-lib Hledger.Reports.ReportOptions No documentation available.
sortspec :: HasReportOptsNoUpdate c => Lens' c SortSpechledger-lib Hledger.Reports.ReportOptions No documentation available.
sortspec_ :: ReportOpts -> SortSpechledger-lib Hledger.Reports.ReportOptions No documentation available.
sortByModTime :: [FilePath] -> IO [FilePath]hledger-lib Hledger.Utils.IO Given a list of existing file paths, sort them by modification time, most recent first.
sortErrors :: Result GQLError a -> Result GQLError amorpheus-graphql-core Data.Morpheus.Internal.Ext No documentation available.
-
reflex Reflex.Widget.Basic Build sortable content in such a way that re-sorting it can cause minimal disruption to an existing context. Naively re-sorting a list of images would destroy every image and add them back in the new order. This framework is able to avoid that by preserving the identity of each image and simply moving it to the new location. Example:
let sortByFst = buttonA $> comparing fst sortBySnd = buttonB $> comparing snd sortEvent = leftmost [sortByFst, sortBySnd] sortableList (\k v -> text $ "\n" ++ show k ++ " " ++ v) -- show each element on a new line (Map.fromList $ zip [0..] [(3, "a"), (2, "b"), (1, "c")]) sortEvent
sortBy :: ListLike full item => (item -> item -> Ordering) -> full -> fullListLike Data.ListLike Sort function taking a custom comparison function