Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapBoth :: (a -> a) -> (a, a) -> (a, a)tidal-core Sound.Tidal.Utils No documentation available.
mapFst :: (a -> b) -> (a, c) -> (b, c)tidal-core Sound.Tidal.Utils No documentation available.
mapPartTimes :: (a -> a) -> ((a, a), (a, a)) -> ((a, a), (a, a))tidal-core Sound.Tidal.Utils No documentation available.
mapSnd :: (a -> b) -> (c, a) -> (c, b)tidal-core Sound.Tidal.Utils No documentation available.
-
toml-parser Toml.Schema Table matching function used to help implement fromValue for tables. Key matching function is given the annotation of the key for error reporting. Value matching function is given the key in case values can depend on their keys.
-
toml-parser Toml.Schema.FromValue Table matching function used to help implement fromValue for tables. Key matching function is given the annotation of the key for error reporting. Value matching function is given the key in case values can depend on their keys.
mapM :: Monad m => (a -> m b) -> Stream m a -> Stream m bvector-stream Data.Stream.Monadic Map a monadic function over a Stream
mapM_ :: Monad m => (a -> m b) -> Stream m a -> m ()vector-stream Data.Stream.Monadic Execute a monadic action for each element of the Stream
mapMaybe :: forall (m :: Type -> Type) a b . Monad m => (a -> Maybe b) -> Stream m a -> Stream m bvector-stream Data.Stream.Monadic No documentation available.
mapMaybeM :: Monad m => (a -> m (Maybe b)) -> Stream m a -> Stream m bvector-stream Data.Stream.Monadic Apply monadic function to each element and drop all Nothings