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. sortByKeys :: (k -> k -> Ordering) -> PSQ k a -> PSQ k a

    cabal-install-solver Distribution.Solver.Modular.PSQ

    No documentation available.

  2. sortGoals :: (Variable QPN -> Variable QPN -> Ordering) -> EndoTreeTrav d c

    cabal-install-solver Distribution.Solver.Modular.Preference

    Sort all goals using the provided function.

  3. sortAnchorLocated :: [GenLocated Anchor a] -> [GenLocated Anchor a]

    ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils

    No documentation available.

  4. sortComments :: [Comment] -> [Comment]

    ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils

    Sort, comparing without span filenames, for CPP injected comments with fake filename

  5. sortEpaComments :: [LEpaComment] -> [LEpaComment]

    ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils

    Sort, comparing without span filenames, for CPP injected comments with fake filename

  6. sortListModelGetIncremental :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m Bool

    gi-gtk4 GI.Gtk.Objects.SortListModel

    Returns whether incremental sorting is enabled. See sortListModelSetIncremental.

  7. sortListModelGetModel :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m (Maybe ListModel)

    gi-gtk4 GI.Gtk.Objects.SortListModel

    Gets the model currently sorted or Nothing if none.

  8. sortListModelGetPending :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m Word32

    gi-gtk4 GI.Gtk.Objects.SortListModel

    Estimates progress of an ongoing sorting operation. The estimate is the number of items that would still need to be sorted to finish the sorting operation if this was a linear algorithm. So this number is not related to how many items are already correctly sorted. If you want to estimate the progress, you can use code like this:

    c code

    pending = gtk_sort_list_model_get_pending (self);
    model = gtk_sort_list_model_get_model (self);
    progress = 1.0 - pending / (double) MAX (1, g_list_model_get_n_items (model));
    
    If no sort operation is ongoing - in particular when SortListModel:incremental is False - this function returns 0.

  9. sortListModelGetSectionSorter :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m (Maybe Sorter)

    gi-gtk4 GI.Gtk.Objects.SortListModel

    Gets the section sorter that is used to sort items of self into sections. Since: 4.12

  10. sortListModelGetSorter :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m (Maybe Sorter)

    gi-gtk4 GI.Gtk.Objects.SortListModel

    Gets the sorter that is used to sort self.

Page 32 of many | Previous | Next