Hoogle Search

Within LTS Haskell 24.37 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. fromListWithKey :: (Interval k e, Ord k) => (k -> a -> a -> a) -> [(k, a)] -> IntervalMap k a

    IntervalMap Data.IntervalMap.Strict

    O(n log n). Build a map from a list of key/value pairs with a combining function. See also fromAscListWith.

  2. toAscList :: IntervalMap k v -> [(k, v)]

    IntervalMap Data.IntervalMap.Strict

    O(n). The list of all key/value pairs contained in the map, in ascending order of keys.

  3. toDescList :: IntervalMap k v -> [(k, v)]

    IntervalMap Data.IntervalMap.Strict

    O(n). The list of all key/value pairs contained in the map, in descending order of keys.

  4. toList :: IntervalMap k v -> [(k, v)]

    IntervalMap Data.IntervalMap.Strict

    O(n). The list of all key/value pairs contained in the map, in no particular order.

  5. fromAscList :: (Interval k e, Eq k) => [k] -> IntervalSet k

    IntervalMap Data.IntervalSet

    O(n). Build a set from an ascending list in linear time. The precondition (input list is ascending) is not checked.

  6. fromDistinctAscList :: Interval k e => [k] -> IntervalSet k

    IntervalMap Data.IntervalSet

    O(n). Build a set from an ascending list of distinct elements in linear time. The precondition is not checked.

  7. fromList :: (Interval k e, Ord k) => [k] -> IntervalSet k

    IntervalMap Data.IntervalSet

    O(n log n). Build a set from a list of elements. See also fromAscList. If the list contains duplicate values, the last value is retained.

  8. toAscList :: IntervalSet k -> [k]

    IntervalMap Data.IntervalSet

    O(n). The list of all values contained in the set, in ascending order.

  9. toDescList :: IntervalSet k -> [k]

    IntervalMap Data.IntervalSet

    O(n). The list of all values in the set, in descending order.

  10. toList :: IntervalSet k -> [k]

    IntervalMap Data.IntervalSet

    O(n). The list of all values in the set, in no particular order.

Page 237 of many | Previous | Next