Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. adjustMinWithKey :: (Word -> a -> a) -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Lazy

    Update a value at the leftmost key in the tree.

  2. adjustR :: (a -> a) -> Word -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value for which the key is greater than or equal to the given one.

  3. adjustRWithKey :: (Word -> a -> a) -> Word -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value for which the key is greater than or equal to the given one.

  4. adjustRange :: (a -> a) -> Range -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value for which the key is in the given range.

  5. adjustRangeWithKey :: (Word -> a -> a) -> Range -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value for which the key is in the given range.

  6. unsafeAdjustRange :: (a -> a) -> Word -> Word -> Patricia a -> Patricia a

    radix-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>.

  7. unsafeAdjustRangeWithKey :: (Word -> a -> a) -> Word -> Word -> Patricia a -> Patricia a

    radix-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>.

  8. adjust :: (a -> a) -> Word -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Strict

    Apply a function to a value in the tree at the given key.

  9. adjust' :: (a -> a) -> Word -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Strict

    Apply a function to a value in the tree at the given key. New value is evaluated to WHNF.

  10. adjustL :: (a -> a) -> Word -> Patricia a -> Patricia a

    radix-tree Data.Patricia.Word.Strict

    Apply a function to every value for which the key is smaller than or equal to the given one.

Page 139 of many | Previous | Next