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.
toDescList :: IntervalMap k a -> [(Interval k, a)]data-interval Data.IntervalMap.Strict Convert the map to a list of key/value pairs where the keys are in descending order.
toList :: IntervalMap k a -> [(Interval k, a)]data-interval Data.IntervalMap.Strict Convert the map to a list of key/value pairs.
fromAscList :: Ord r => [Interval r] -> IntervalSet rdata-interval Data.IntervalSet Build a map from an ascending list of intervals. The precondition is not checked.
fromList :: Ord r => [Interval r] -> IntervalSet rdata-interval Data.IntervalSet Build a interval set from a list of intervals.
toAscList :: Ord r => IntervalSet r -> [Interval r]data-interval Data.IntervalSet Convert a interval set into a list of intervals in ascending order.
toDescList :: Ord r => IntervalSet r -> [Interval r]data-interval Data.IntervalSet Convert a interval set into a list of intervals in descending order.
toList :: Ord r => IntervalSet r -> [Interval r]data-interval Data.IntervalSet Convert a interval set into a list of intervals.
modifyAscList :: (Ord b, Num b, Bits b) => [(b, a -> a)] -> IntTrie a -> IntTrie adata-inttrie Data.IntTrie Modify the function at a (potentially infinite) list of points in ascending order
modifyAscList [(i0, f0)..(iN, fN)] = modify i0 f0 . ... . modify iN fN
modifyDescList :: (Ord b, Num b, Bits b) => [(b, a -> a)] -> IntTrie a -> IntTrie adata-inttrie Data.IntTrie Modify the function at a (potentially infinite) list of points in descending order
boundedList :: Int -> Memo a -> Memo [a]data-memocombinators Data.MemoCombinators Build a table which memoizes all lists of less than the given length.