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.
sortBy :: SortBy f => (a -> a -> Ordering) -> f a -> f anon-empty Data.NonEmpty.Class No documentation available.
sortDefault :: (Ord a, SortBy f) => f a -> f anon-empty Data.NonEmpty.Class sortKey :: (SortKey f, Ord b) => (a -> b) -> f a -> f anon-empty Data.NonEmpty.Class No documentation available.
sortKeyGen :: (SortBy f, Functor f, Ord b) => (a -> b) -> f a -> f anon-empty Data.NonEmpty.Class No documentation available.
-
vector-algorithms Data.Vector.Algorithms.AmericanFlag A fully parameterized version of the sorting algorithm. Again, this function takes both radix information and a comparison, because the algorithms falls back to insertion sort for small arrays.
-
vector-algorithms Data.Vector.Algorithms.AmericanFlag A variant on sort that returns a vector of unique elements.
-
vector-algorithms Data.Vector.Algorithms.AmericanFlag A variant on sortBy which returns a vector of unique elements.
sortBy :: (PrimMonad m, MVector v e) => Comparison e -> v (PrimState m) e -> m ()vector-algorithms Data.Vector.Algorithms.Heap Sorts an entire array using a custom ordering.
-
vector-algorithms Data.Vector.Algorithms.Heap Sorts a portion of an array [l,u) using a custom ordering
-
vector-algorithms Data.Vector.Algorithms.Heap Given a heap stored in a portion of an array [l,u), sorts the highest values into [m,u). The elements in [l,m) are not in any particular order.