Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base Data.List The sort function implements a stable sorting algorithm. It is a special case of sortBy, which allows the programmer to supply their own comparison function. Elements are arranged from lowest to highest, keeping duplicates in the order they appeared in the input. The argument must be finite.
Examples
>>> sort [1,6,4,3,2,5] [1,2,3,4,5,6]
>>> sort "haskell" "aehklls"
>>> import Data.Semigroup(Arg(..)) >>> sort [Arg ":)" 0, Arg ":D" 0, Arg ":)" 1, Arg ":3" 0, Arg ":D" 1] [Arg ":)" 0,Arg ":)" 1,Arg ":3" 0,Arg ":D" 0,Arg ":D" 1]
sort :: Ord a => NonEmpty a -> NonEmpty abase Data.List.NonEmpty Sort a stream.
sort :: ByteString -> ByteStringbytestring Data.ByteString O(n) Sort a ByteString efficiently, using counting sort.
sort :: ByteString -> ByteStringbytestring Data.ByteString.Char8 O(n) Sort a ByteString efficiently, using counting sort.
sort :: Ord a => Seq a -> Seq acontainers Data.Sequence sort sorts the specified Seq by the natural ordering of its elements. The sort is stable. If stability is not required, unstableSort can be slightly faster.
sort :: Ord a => Seq a -> Seq acontainers Data.Sequence.Internal.Sorting sort sorts the specified Seq by the natural ordering of its elements. The sort is stable. If stability is not required, unstableSort can be slightly faster.
sort :: Ord a => NonEmpty a -> NonEmpty abase-compat Data.List.NonEmpty.Compat Sort a stream.
sort :: Ord b => (a -> b) -> [a] -> [a]utility-ht Data.List.Key No documentation available.
sort :: (Sort f, Ord a) => f a -> f anon-empty Data.NonEmpty.Class No documentation available.
-
vector-algorithms Data.Vector.Algorithms.AmericanFlag Sorts an array using the default ordering. Both Lexicographic and Ord are necessary because the algorithm falls back to insertion sort for sufficiently small arrays.
Page 1 of many | Next