Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMaybeWithKey :: (Key -> v -> Maybe u) -> KeyMap v -> KeyMap uaeson Data.Aeson.KeyMap Map values and collect the Just results.
explicitParseFieldMaybe :: (Value -> Parser a) -> Object -> Key -> Parser (Maybe a)aeson Data.Aeson.Types Variant of .:? with explicit parser function.
explicitParseFieldMaybe' :: (Value -> Parser a) -> Object -> Key -> Parser (Maybe a)aeson Data.Aeson.Types Variant of .:! with explicit parser function.
parseFieldMaybe :: FromJSON a => Object -> Key -> Parser (Maybe a)aeson Data.Aeson.Types Function variant of .:?.
parseFieldMaybe' :: FromJSON a => Object -> Key -> Parser (Maybe a)aeson Data.Aeson.Types Function variant of .:!.
parseMaybe :: (a -> Parser b) -> a -> Maybe baeson Data.Aeson.Types pprMaybeExp :: Precedence -> Maybe Exp -> Doctemplate-haskell Language.Haskell.TH.Ppr No documentation available.
lookupResToMaybe :: LookupRes a -> Maybe aunordered-containers Data.HashMap.Internal No documentation available.
mapMaybe :: (v1 -> Maybe v2) -> HashMap k v1 -> HashMap k v2unordered-containers Data.HashMap.Internal Transform this map by applying a function to every value and retaining only some of them.
mapMaybeWithKey :: (k -> v1 -> Maybe v2) -> HashMap k v1 -> HashMap k v2unordered-containers Data.HashMap.Internal Transform this map by applying a function to every value and retaining only some of them.