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.

  1. map :: (a -> b) -> Radix1Tree a -> Radix1Tree b

    radix-tree Data.Radix1Tree.Word8.Strict

    Apply a function to every value in the tree.

  2. map :: (a -> b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Lazy

    Apply a function to every value in the tree.

  3. map :: (a -> b) -> RadixTree a -> RadixTree b

    radix-tree Data.RadixTree.Word8.Strict

    Apply a function to every value in the tree.

  4. map :: (a -> b) -> RAList a -> RAList b

    ral Data.RAList

    >>> map toUpper (fromList ['a'..'f'])
    fromList "ABCDEF"
    

  5. map :: (a -> b) -> NERAList a -> NERAList b

    ral Data.RAList.NonEmpty

    >>> map toUpper (fromNonEmpty ('a' :| ['b'..'f']))
    fromNonEmpty ('A' :| "BCDEF")
    

  6. map :: forall a b (n :: Bin) . (a -> b) -> RAVec n a -> RAVec n b

    ral Data.RAVec

    No documentation available.

  7. map :: forall a b (m :: BinP) . (a -> b) -> NERAVec m a -> NERAVec m b

    ral Data.RAVec.NonEmpty

    No documentation available.

  8. map :: forall a b (n :: Nat) . (a -> b) -> Tree n a -> Tree n b

    ral Data.RAVec.Tree

    >>> map not $ Node (Leaf True) (Leaf False)
    Node (Leaf False) (Leaf True)
    

  9. map :: forall a b (n :: Nat) . SNatI n => (a -> b) -> Tree n a -> Tree n b

    ral Data.RAVec.Tree.DF

    >>> map not $ Node (Leaf True) (Leaf False)
    Node (Leaf False) (Leaf True)
    

  10. map :: (Word8 -> Word8) -> ByteString -> ByteString

    rawfilepath Data.ByteString.RawFilePath

    O(n) map f xs is the ByteString obtained by applying f to each element of xs.

Page 29 of many | Previous | Next