Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. ifJust :: Maybe a -> (a -> b) -> b -> b

    Agda Agda.Utils.Maybe

    caseMaybe with flipped branches.

  2. ifJustM :: Monad m => m (Maybe a) -> (a -> m b) -> m b -> m b

    Agda Agda.Utils.Maybe

    caseMaybeM with flipped branches.

  3. whenJust :: Monad m => Maybe a -> (a -> m ()) -> m ()

    Agda Agda.Utils.Maybe

    A more telling name for forM_ for the Maybe collection type. Or: caseMaybe without the Nothing case.

  4. whenJustM :: Monad m => m (Maybe a) -> (a -> m ()) -> m ()

    Agda Agda.Utils.Maybe

    caseMaybeM without the Nothing case.

  5. ifJustM :: Monad m => m (Maybe a) -> (a -> m b) -> m b -> m b

    Agda Agda.Utils.Maybe.Strict

    caseMaybeM with flipped branches.

  6. whenJust :: Monad m => Maybe a -> (a -> m ()) -> m ()

    Agda Agda.Utils.Maybe.Strict

    A more telling name for forM for the Maybe collection type. Or: caseMaybe without the Nothing case.

  7. whenJustM :: Monad m => m (Maybe a) -> (a -> m ()) -> m ()

    Agda Agda.Utils.Maybe.Strict

    caseMaybeM without the Nothing case.

  8. adjust :: Ord k => [k] -> (Maybe v -> Maybe v) -> Trie k v -> Trie k v

    Agda Agda.Utils.Trie

    Adjust value at key, leave subtree intact. Disclaimer: may return a non-canoncial trie because it does not clean up subtries that become empty.

  9. whenJust :: Monoid m => Maybe a -> (a -> m) -> m

    BNFC BNFC.Utils

    Generalization of forM to Monoid.

  10. adjustColors :: LogSettings -> Colors -> Colors

    Blammo Blammo.Logging.LogSettings

    No documentation available.

Page 119 of many | Previous | Next