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.

  1. toSortedList :: Ord a => [a] -> SortedList a

    sorted-list Data.SortedList

    Create a SortedList by sorting a regular list.

  2. psortBy :: (a -> a -> Bool) -> [a] -> [(a, a)]

    speculate Test.Speculate.Engine

    No documentation available.

  3. 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]
    

  4. nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]

    speculate Test.Speculate.Utils

    Like nubSort but allows providing a function to compare values.

  5. FieldSortAscending :: FieldSortType

    xlsx Codec.Xlsx.Types.PivotTable

    No documentation available.

  6. FieldSortDescending :: FieldSortType

    xlsx Codec.Xlsx.Types.PivotTable

    No documentation available.

  7. FieldSortManual :: FieldSortType

    xlsx Codec.Xlsx.Types.PivotTable

    No documentation available.

  8. data FieldSortType

    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)

  9. _pfiSortType :: PivotFieldInfo -> FieldSortType

    xlsx Codec.Xlsx.Types.PivotTable

    No documentation available.

  10. _sprSort :: SheetProtection -> Bool

    xlsx Codec.Xlsx.Types.Protection

    sorting should not be allowed when the sheet is protected

Page 139 of many | Previous | Next