Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mapEither :: (a -> Either b c) -> RadixTree a -> (RadixTree b, RadixTree c)

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree and create two trees, one out of Left results and one out of Right ones.

  2. mapEitherWithKey :: (Build -> a -> Either b c) -> RadixTree a -> (RadixTree b, RadixTree c)

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree and create two trees, one out of Left results and one out of Right ones.

  3. mapMaybe :: (a -> Maybe b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree and create one out of Just values.

  4. mapMaybeWithKey :: (Build -> a -> Maybe b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree and create one out of Just values.

  5. mapWithKey :: (Build -> a -> b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree.

  6. map' :: (a -> b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree.

  7. mapEither :: (a -> Either b c) -> RadixTree a -> Split b c

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree and create two trees, one out of Left results and one out of Right ones. The Either is evaluated to WHNF.

  8. mapEitherWithKey :: (Build -> a -> Either b c) -> RadixTree a -> Split b c

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree and create two trees, one out of Left results and one out of Right ones. The Either is evaluated to WHNF.

  9. mapMaybe :: (a -> Maybe b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree and create one out of Just values. The Maybe is evaluated to WHNF.

  10. mapMaybeWithKey :: (Build -> a -> Maybe b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree and create one out of Just values. The Maybe is evaluated to WHNF.

Page 316 of many | Previous | Next