• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. lookupJustDef :: Eq a => b -> a -> [(a, b)] -> b

    safe Safe

    No documentation available.

  2. lookupJustNote :: (Partial, Eq a) => String -> a -> [(a, b)] -> b

    safe Safe

    No documentation available.

  3. findJust :: (Partial, Foldable t) => (a -> Bool) -> t a -> a

    safe Safe.Foldable

    findJust op = fromJust . find op
    

  4. findJustDef :: Foldable t => a -> (a -> Bool) -> t a -> a

    safe Safe.Foldable

    No documentation available.

  5. findJustNote :: (Partial, Foldable t) => String -> (a -> Bool) -> t a -> a

    safe Safe.Foldable

    No documentation available.

  6. findJustSafe :: (Monoid m, Foldable t) => (m -> Bool) -> t m -> m

    safe Safe.Foldable

    Deprecated: Use findJustDef mempty instead.

  7. catchJust_ :: (SomeException -> Maybe b) -> IO a -> (b -> IO a) -> IO a

    extra Control.Exception.Extra

    Like catch_ but for catchJust

  8. handleJust_ :: (SomeException -> Maybe b) -> (b -> IO a) -> IO a -> IO a

    extra Control.Exception.Extra

    Like catch_ but for handleJust

  9. tryJust_ :: (SomeException -> Maybe b) -> IO a -> IO (Either b a)

    extra Control.Exception.Extra

    Like catch_ but for tryJust

  10. firstJustM :: Monad m => (a -> m (Maybe b)) -> [a] -> m (Maybe b)

    extra Control.Monad.Extra

    Like findM, but also allows you to compute some additional information in the predicate.

Page 31 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete