Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mapAndRecoverM :: (a -> TcRn b) -> [a] -> TcRn [b]

    breakpoint Debug.Breakpoint.GhcFacade

    Drop elements of the input that fail, so the result list can be shorter than the argument list

  2. mapAndReportM :: (a -> TcRn b) -> [a] -> TcRn [b]

    breakpoint Debug.Breakpoint.GhcFacade

    Apply the function to all elements on the input list If all succeed, return the list of results Otherwise fail, propagating all errors

  3. mapAndUnzip3M :: Monad m => (a -> m (b, c, d)) -> [a] -> m ([b], [c], [d])

    breakpoint Debug.Breakpoint.GhcFacade

    mapAndUnzipM for triples

  4. mapAndUnzip4M :: Monad m => (a -> m (b, c, d, e)) -> [a] -> m ([b], [c], [d], [e])

    breakpoint Debug.Breakpoint.GhcFacade

    No documentation available.

  5. mapAndUnzip5M :: Monad m => (a -> m (b, c, d, e, f)) -> [a] -> m ([b], [c], [d], [e], [f])

    breakpoint Debug.Breakpoint.GhcFacade

    No documentation available.

  6. mapAndUnzipM :: Applicative m => (a -> m (b, c)) -> [a] -> m ([b], [c])

    breakpoint Debug.Breakpoint.GhcFacade

    The mapAndUnzipM function maps its first argument over a list, returning the result as a pair of lists. This function is mainly used with complicated data structures or a state monad.

  7. mapMaybeM :: Applicative m => (a -> m (Maybe b)) -> [a] -> m [b]

    breakpoint Debug.Breakpoint.GhcFacade

    Applicative version of mapMaybe

  8. mapPlugins :: Plugins -> (Plugin -> [CommandLineOption] -> a) -> [a]

    breakpoint Debug.Breakpoint.GhcFacade

    No documentation available.

  9. mapSndM :: (Applicative m, Traversable f) => (b -> m c) -> f (a, b) -> m (f (a, c))

    breakpoint Debug.Breakpoint.GhcFacade

    Monadic version of mapSnd

  10. mapBy :: (ByteString -> a -> Maybe b) -> Trie a -> Trie b

    bytestring-trie Data.Trie

    Keyed version of filterMap. Warning: This function suffers Bug #25.

Page 280 of many | Previous | Next