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. elemIndexJustNote :: (Partial, Eq a) => String -> a -> [a] -> Int

    safe Safe

    No documentation available.

  2. findIndexJust :: (a -> Bool) -> [a] -> Int

    safe Safe

    findIndexJust op = fromJust . findIndex op
    

  3. findIndexJustDef :: Int -> (a -> Bool) -> [a] -> Int

    safe Safe

    No documentation available.

  4. findIndexJustNote :: Partial => String -> (a -> Bool) -> [a] -> Int

    safe Safe

    No documentation available.

  5. findJust :: (a -> Bool) -> [a] -> a

    safe Safe

    findJust op = fromJust . find op
    

  6. findJustDef :: a -> (a -> Bool) -> [a] -> a

    safe Safe

    No documentation available.

  7. findJustNote :: Partial => String -> (a -> Bool) -> [a] -> a

    safe Safe

    No documentation available.

  8. fromJustDef :: a -> Maybe a -> a

    safe Safe

    An alternative name for fromMaybe, to fit the naming scheme of this package. Generally using fromMaybe directly would be considered better style.

  9. fromJustNote :: Partial => String -> Maybe a -> a

    safe Safe

    No documentation available.

  10. lookupJust :: (Eq a, Partial) => a -> [(a, b)] -> b

    safe Safe

    lookupJust key = fromJust . lookup key
    

Page 30 of many | Previous | Next