Hoogle Search
Within LTS Haskell 24.16 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: (a -> b) -> Radix1Tree a -> Radix1Tree bradix-tree Data.Radix1Tree.Word8.Strict Apply a function to every value in the tree.
map :: (a -> b) -> RadixTree a -> RadixTree bradix-tree Data.RadixTree.Word8.Lazy Apply a function to every value in the tree.
map :: (a -> b) -> RadixTree a -> RadixTree bradix-tree Data.RadixTree.Word8.Strict Apply a function to every value in the tree.
map :: (a -> b) -> RAList a -> RAList bral Data.RAList >>> map toUpper (fromList ['a'..'f']) fromList "ABCDEF"
map :: (a -> b) -> NERAList a -> NERAList bral Data.RAList.NonEmpty >>> map toUpper (fromNonEmpty ('a' :| ['b'..'f'])) fromNonEmpty ('A' :| "BCDEF")
map :: forall a b (n :: Bin) . (a -> b) -> RAVec n a -> RAVec n bral Data.RAVec No documentation available.
map :: forall a b (m :: BinP) . (a -> b) -> NERAVec m a -> NERAVec m bral Data.RAVec.NonEmpty No documentation available.
map :: forall a b (n :: Nat) . (a -> b) -> Tree n a -> Tree n bral Data.RAVec.Tree >>> map not $ Node (Leaf True) (Leaf False) Node (Leaf False) (Leaf True)
map :: forall a b (n :: Nat) . SNatI n => (a -> b) -> Tree n a -> Tree n bral Data.RAVec.Tree.DF >>> map not $ Node (Leaf True) (Leaf False) Node (Leaf False) (Leaf True)
map :: (Word8 -> Word8) -> ByteString -> ByteStringrawfilepath Data.ByteString.RawFilePath O(n) map f xs is the ByteString obtained by applying f to each element of xs.