Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
adjustMax :: (a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Update a value at the rightmost key in the tree.
adjustMaxWithKey :: (Word -> a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Update a value at the rightmost key in the tree.
adjustMin :: (a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Update a value at the leftmost key in the tree.
adjustMinWithKey :: (Word -> a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Update a value at the leftmost key in the tree.
adjustR :: (a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Apply a function to every value for which the key is greater than or equal to the given one.
adjustRWithKey :: (Word -> a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Apply a function to every value for which the key is greater than or equal to the given one.
adjustRange :: (a -> a) -> Range -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Apply a function to every value for which the key is in the given range.
adjustRangeWithKey :: (Word -> a -> a) -> Range -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy Apply a function to every value for which the key is in the given range.
unsafeAdjustRange :: (a -> a) -> Word -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy.Unsafe Apply a function to every value for which the key is in the given range. <math> must be greater than <math>.
unsafeAdjustRangeWithKey :: (Word -> a -> a) -> Word -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Lazy.Unsafe Apply a function to every value for which the key is in the given range. <math> must be greater than <math>.