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. mapMaybe :: (a -> Maybe b) -> Word64Map a -> Word64Map b

    ghc-lib-parser GHC.Data.Word64Map.Strict

    Map values and collect the Just results.

    let f x = if x == "a" then Just "new a" else Nothing
    mapMaybe f (fromList [(5,"a"), (3,"b")]) == singleton 5 "new a"
    

  2. mapMaybeWithKey :: (Key -> a -> Maybe b) -> Word64Map a -> Word64Map b

    ghc-lib-parser GHC.Data.Word64Map.Strict

    Map keys/values and collect the Just results.

    let f k _ = if k < 5 then Just ("key : " ++ (show k)) else Nothing
    mapMaybeWithKey f (fromList [(5,"a"), (3,"b")]) == singleton 3 "key : 3"
    

  3. traverseMaybeWithKey :: Applicative f => (Key -> a -> f (Maybe b)) -> Word64Map a -> f (Word64Map b)

    ghc-lib-parser GHC.Data.Word64Map.Strict

    Traverse keys/values and collect the Just results.

  4. mapMaybe :: (a -> Maybe b) -> Word64Map a -> Word64Map b

    ghc-lib-parser GHC.Data.Word64Map.Strict.Internal

    Map values and collect the Just results.

    let f x = if x == "a" then Just "new a" else Nothing
    mapMaybe f (fromList [(5,"a"), (3,"b")]) == singleton 5 "new a"
    

  5. mapMaybeWithKey :: (Key -> a -> Maybe b) -> Word64Map a -> Word64Map b

    ghc-lib-parser GHC.Data.Word64Map.Strict.Internal

    Map keys/values and collect the Just results.

    let f k _ = if k < 5 then Just ("key : " ++ (show k)) else Nothing
    mapMaybeWithKey f (fromList [(5,"a"), (3,"b")]) == singleton 3 "key : 3"
    

  6. traverseMaybeWithKey :: Applicative f => (Key -> a -> f (Maybe b)) -> Word64Map a -> f (Word64Map b)

    ghc-lib-parser GHC.Data.Word64Map.Strict.Internal

    Traverse keys/values and collect the Just results.

  7. hsc_home_unit_maybe :: HscEnv -> Maybe HomeUnit

    ghc-lib-parser GHC.Driver.Env

    No documentation available.

  8. annProvenanceName_maybe :: UnXRec p => AnnProvenance p -> Maybe (IdP p)

    ghc-lib-parser GHC.Hs.Decls

    No documentation available.

  9. getRecConArgs_maybe :: ConDecl GhcRn -> Maybe (LocatedL [LConDeclField GhcRn])

    ghc-lib-parser GHC.Hs.Decls

    Return Just fields if a data constructor declaration uses record syntax (i.e., RecCon), where fields are the field selectors. Otherwise, return Nothing.

  10. pprMaybeWithDoc :: Maybe (LHsDoc name) -> SDoc -> SDoc

    ghc-lib-parser GHC.Hs.Doc

    See pprWithHsDoc

Page 207 of many | Previous | Next