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.
adjust :: (a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to a value in the tree at the given key.
adjust' :: (a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to a value in the tree at the given key. New value is evaluated to WHNF.
adjustL :: (a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to every value for which the key is smaller than or equal to the given one.
adjustL' :: (a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to every value for which the key is smaller than or equal to the given one. New value is evaluated to WHNF.
adjustLWithKey :: (Word -> a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to every value for which the key is smaller than or equal to the given one.
adjustLWithKey' :: (Word -> a -> a) -> Word -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Apply a function to every value for which the key is smaller than or equal to the given one. New value is evaluated to WHNF.
adjustMax :: (a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Update a value at the rightmost key in the tree.
adjustMax' :: (a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Update a value at the rightmost key in the tree. New value is evaluated to WHNF.
adjustMaxWithKey :: (Word -> a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Update a value at the rightmost key in the tree.
adjustMaxWithKey' :: (Word -> a -> a) -> Patricia a -> Patricia aradix-tree Data.Patricia.Word.Strict Update a value at the rightmost key in the tree. New value is evaluated to WHNF.