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.
sortByKeys :: (k -> k -> Ordering) -> PSQ k a -> PSQ k acabal-install-solver Distribution.Solver.Modular.PSQ No documentation available.
sortGoals :: (Variable QPN -> Variable QPN -> Ordering) -> EndoTreeTrav d ccabal-install-solver Distribution.Solver.Modular.Preference Sort all goals using the provided function.
sortAnchorLocated :: [GenLocated Anchor a] -> [GenLocated Anchor a]ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils No documentation available.
sortComments :: [Comment] -> [Comment]ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils Sort, comparing without span filenames, for CPP injected comments with fake filename
sortEpaComments :: [LEpaComment] -> [LEpaComment]ghc-exactprint Language.Haskell.GHC.ExactPrint.Utils Sort, comparing without span filenames, for CPP injected comments with fake filename
sortListModelGetIncremental :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m Boolgi-gtk4 GI.Gtk.Objects.SortListModel Returns whether incremental sorting is enabled. See sortListModelSetIncremental.
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.
sortListModelGetPending :: (HasCallStack, MonadIO m, IsSortListModel a) => a -> m Word32gi-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.-
gi-gtk4 GI.Gtk.Objects.SortListModel Gets the section sorter that is used to sort items of self into sections. Since: 4.12
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.