Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. mapM_ :: HashTable h => ((k, v) -> IO a) -> IOHashTable h k v -> IO ()

    hashtables Data.HashTable.IO

    See the documentation for this function in mapM_.

  2. mapM_ :: ((k, v) -> ST s b) -> HashTable s k v -> ST s ()

    hashtables Data.HashTable.ST.Basic

    See the documentation for this function in mapM_.

  3. mapM_ :: ((k, v) -> ST s a) -> HashTable s k v -> ST s ()

    hashtables Data.HashTable.ST.Cuckoo

    See the documentation for this function in mapM_.

  4. mapM_ :: ((k, v) -> ST s b) -> HashTable s k v -> ST s ()

    hashtables Data.HashTable.ST.Linear

    See the documentation for this function in Data.HashTable.Class#v:mapM_.

  5. mapInputT :: (forall b . () => m b -> m b) -> InputT m a -> InputT m a

    haskeline System.Console.Haskeline

    Map a user interaction by modifying the base monad computation.

  6. map_ :: Term arg result => arg -> result

    lucid Lucid.Html5

    map element

  7. mapAccumL :: (Storable a, Storable b) => (acc -> a -> (acc, b)) -> acc -> Vector a -> (acc, Vector b)

    storablevector Data.StorableVector

    The mapAccumL function behaves like a combination of map and foldl; it applies a function to each element of a Vector, passing an accumulating parameter from left to right, and returning a final value of this accumulator together with the new list.

  8. mapAccumR :: (Storable a, Storable b) => (acc -> a -> (acc, b)) -> acc -> Vector a -> (acc, Vector b)

    storablevector Data.StorableVector

    The mapAccumR function behaves like a combination of map and foldr; it applies a function to each element of a Vector, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new Vector.

  9. mapIndexed :: (Storable a, Storable b) => (Int -> a -> b) -> Vector a -> Vector b

    storablevector Data.StorableVector

    O(n) map functions, provided with the index at each position

  10. mapAccumL :: (Storable a, Storable b) => (acc -> a -> (acc, b)) -> acc -> Vector a -> (acc, Vector b)

    storablevector Data.StorableVector.Lazy

    No documentation available.

Page 130 of many | Previous | Next