Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMaybe :: (a -> Maybe b) -> CharMap a -> CharMap bregex-tdfa Data.IntMap.CharMap2 No documentation available.
mapMaybeWithKey :: (Key -> a -> Maybe b) -> CharMap a -> CharMap bregex-tdfa Data.IntMap.CharMap2 No documentation available.
mapMaybe :: Enum key => (a -> Maybe b) -> EnumMap key a -> EnumMap key bregex-tdfa Data.IntMap.EnumMap2 No documentation available.
mapMaybeWithKey :: Enum key => (key -> a -> Maybe b) -> EnumMap key a -> EnumMap key bregex-tdfa Data.IntMap.EnumMap2 No documentation available.
mapM_ :: Monad m => (a -> m ()) -> FoldM m a ()foldl Control.Foldl Converts an effectful function to a fold. Specialized version of sink.
mapMaybe :: Ord key => key -> T (Map key elem) (Maybe elem)data-accessor Data.Accessor.Container Treats a finite map like an infinite map, where all undefined elements are Nothing and defined elements are Just.
mapMatrixWithIndex :: (Element a, Storable b) => ((Int, Int) -> a -> b) -> Matrix a -> Matrix bhmatrix Numeric.LinearAlgebra.Devel >>> mapMatrixWithIndex (\(i,j) v -> 100*v + 10*fromIntegral i + fromIntegral j) (ident 3:: Matrix Double) (3><3) [ 100.0, 1.0, 2.0 , 10.0, 111.0, 12.0 , 20.0, 21.0, 122.0 ]
-
hmatrix Numeric.LinearAlgebra.Devel >>> mapMatrixWithIndexM (\(i,j) v -> Just $ 100*v + 10*fromIntegral i + fromIntegral j) (ident 3:: Matrix Double) Just (3><3) [ 100.0, 1.0, 2.0 , 10.0, 111.0, 12.0 , 20.0, 21.0, 122.0 ]
mapMatrixWithIndexM_ :: (Element a, Num a, Monad m) => ((Int, Int) -> a -> m ()) -> Matrix a -> m ()hmatrix Numeric.LinearAlgebra.Devel >>> mapMatrixWithIndexM_ (\(i,j) v -> printf "m[%d,%d] = %.f\n" i j v :: IO()) ((2><3)[1 :: Double ..]) m[0,0] = 1 m[0,1] = 2 m[0,2] = 3 m[1,0] = 4 m[1,1] = 5 m[1,2] = 6
mapM_ :: (a -> IO b) -> InputStream a -> IO (InputStream a)io-streams System.IO.Streams.Combinators Maps a side effect over an InputStream. mapM_ f s produces a new input stream that passes all output from s through the side-effecting IO action f. Example:
ghci> Streams.fromList [1,2,3] >>= Streams.mapM_ (putStrLn . show . (*2)) >>= Streams.toList 2 4 6 [1,2,3]