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.

  1. sortRowsLike :: [AccountName] -> [PeriodicReportRow DisplayName b] -> [PeriodicReportRow DisplayName b]

    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.

  2. sortKeysDescription :: [Char]

    hledger-lib Hledger.Reports.ReportOptions

    No documentation available.

  3. sort_amount :: HasReportOptsNoUpdate c => Lens' c Bool

    hledger-lib Hledger.Reports.ReportOptions

    No documentation available.

  4. sort_amount_ :: ReportOpts -> Bool

    hledger-lib Hledger.Reports.ReportOptions

    No documentation available.

  5. sortspec :: HasReportOptsNoUpdate c => Lens' c SortSpec

    hledger-lib Hledger.Reports.ReportOptions

    No documentation available.

  6. sortspec_ :: ReportOpts -> SortSpec

    hledger-lib Hledger.Reports.ReportOptions

    No documentation available.

  7. sortByModTime :: [FilePath] -> IO [FilePath]

    hledger-lib Hledger.Utils.IO

    Given a list of existing file paths, sort them by modification time, most recent first.

  8. sortErrors :: Result GQLError a -> Result GQLError a

    morpheus-graphql-core Data.Morpheus.Internal.Ext

    No documentation available.

  9. sortableList :: (MonadHold t m, MonadFix m, Adjustable t m, Ord k) => (k -> v -> m a) -> Map k v -> Event t (v -> v -> Ordering) -> m (Map k a)

    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
    

  10. sortBy :: ListLike full item => (item -> item -> Ordering) -> full -> full

    ListLike Data.ListLike

    Sort function taking a custom comparison function

Page 26 of many | Previous | Next