Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. data RIntSet

    range-set-list Data.RangeSet.IntMap

    Internally set is represented as sorted list of distinct inclusive ranges.

  2. isSubsetOf :: RIntSet -> RIntSet -> Bool

    range-set-list Data.RangeSet.IntMap

    O(n+m). Is this a subset? (s1 isSubsetOf s2) tells whether s1 is a subset of s2.

  3. isSubsetRangeList :: Ord a => [(a, a)] -> [(a, a)] -> Bool

    range-set-list Data.RangeSet.Internal

    Determine if the first list is a subset of the second.

  4. rangeIsSubsetList :: Ord a => a -> a -> [(a, a)] -> Maybe [(a, a)]

    range-set-list Data.RangeSet.Internal

    Determine if [x,y] is a subset of the list, returning the list right of y if so.

  5. data RSet a

    range-set-list Data.RangeSet.List

    Internally set is represented as sorted list of distinct inclusive ranges.

  6. isSubsetOf :: Ord a => RSet a -> RSet a -> Bool

    range-set-list Data.RangeSet.List

    O(n+m). Is this a subset? (s1 isSubsetOf s2) tells whether s1 is a subset of s2.

  7. toSet :: Enum a => RSet a -> Set a

    range-set-list Data.RangeSet.List

    O(n*r). Convert the set to a Set of elements. r is the size of longest range.

  8. data RSet a

    range-set-list Data.RangeSet.Map

    Internally set is represented as sorted list of distinct inclusive ranges.

  9. isSubsetOf :: Ord a => RSet a -> RSet a -> Bool

    range-set-list Data.RangeSet.Map

    O(n+m). Is this a subset? (s1 isSubsetOf s2) tells whether s1 is a subset of s2.

  10. toSet :: Ord a => Ranges a -> Set (Range a)

    ranges Data.Ranges

    Allows quick lookups using ranges.

Page 208 of many | Previous | Next