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.
toSortedList :: Ord a => [a] -> SortedList asorted-list Data.SortedList Create a SortedList by sorting a regular list.
psortBy :: (a -> a -> Bool) -> [a] -> [(a, a)]speculate Test.Speculate.Engine No documentation available.
nubSort :: Ord a => [a] -> [a]speculate Test.Speculate.Utils O(n log n). Sorts and remove repetitions. Equivalent to nub . sort.
> nubSort [1,2,3] [1,2,3] > nubSort [3,2,1] [1,2,3] > nubSort [3,2,1,3,2,1] [1,2,3] > nubSort [3,3,1,1,2,2] [1,2,3]
nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]speculate Test.Speculate.Utils Like nubSort but allows providing a function to compare values.
FieldSortAscending :: FieldSortTypexlsx Codec.Xlsx.Types.PivotTable No documentation available.
FieldSortDescending :: FieldSortTypexlsx Codec.Xlsx.Types.PivotTable No documentation available.
FieldSortManual :: FieldSortTypexlsx Codec.Xlsx.Types.PivotTable No documentation available.
-
xlsx Codec.Xlsx.Types.PivotTable Sort orders that can be applied to fields in a PivotTable See 18.18.28 "ST_FieldSortType (Field Sort Type)" (p. 2454)
_pfiSortType :: PivotFieldInfo -> FieldSortTypexlsx Codec.Xlsx.Types.PivotTable No documentation available.
_sprSort :: SheetProtection -> Boolxlsx Codec.Xlsx.Types.Protection sorting should not be allowed when the sheet is protected