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.
-
cabal-gild CabalGild.Unstable.Type.Mixin Sorts the mixinIncludeRenaming field using sortIncludeRenaming.
sortModuleRenaming :: ModuleRenaming -> ModuleRenamingcabal-gild CabalGild.Unstable.Type.Mixin Sorts both HidingRenaming and ModuleRenaming variants.
sortGroupOn :: Ord b => (a -> b) -> [a] -> [(b, [a])]cabal-install Distribution.Client.CmdErrorMessages When rendering lists of things it often reads better to group related things, e.g. grouping components by package name
renderListSemiAnd [ "the package " ++ prettyShow pkgname ++ " components " ++ renderListCommaAnd showComponentName components | (pkgname, components) <- sortGroupOn packageName allcomponents ]
sortTop :: BindingMap -> [TopEntityT] -> ([TopEntityT], HashMap Unique [Unique])clash-lib Clash.Driver Reverse topologically sort given top entities. Also returns a mapping that maps a top entity to its reverse topologically sorted transitive dependencies.
-
code-conjure Conjure.Engine List sort lifted over the Expr type. Works for the element types Int, Char and Bool.
> sort' $ unit one sort [1] :: Int
> sort' $ unit bee sort "b" :: Int
> sort' $ zero -:- unit two sort [0,2] :: Int
> evl $ sort' $ two -:- unit one :: [Int] [1,2]
-
code-conjure Conjure.Expr List sort lifted over the Expr type. Works for the element types Int, Char and Bool.
> sort' $ unit one sort [1] :: Int
> sort' $ unit bee sort "b" :: Int
> sort' $ zero -:- unit two sort [0,2] :: Int
> evl $ sort' $ two -:- unit one :: [Int] [1,2]
sortOrder :: CoinDetails -> Stringcryptocompare CryptoCompare No documentation available.
sortWith :: Sorting b => (a -> b) -> [a] -> [a]discrimination Data.Discrimination O(n). Sort a list with a Schwartzian transformation by using discrimination. This linear time replacement for sortWith and sortOn uses discrimination.
sorting :: Sorting a => Sort adiscrimination Data.Discrimination For every strictly monotone-increasing function f:
contramap f sorting ≡ sorting
sorting1 :: Sorting1 f => Sort a -> Sort (f a)discrimination Data.Discrimination No documentation available.