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.
(
.:? ) :: FromJSON a => Object -> Key -> Parser (Maybe a)Agda Agda.Interaction.JSON Retrieve the value associated with the given key of an Object. The result is Nothing if the key is not present or if its value is Null, or empty if the value cannot be converted to the desired type. This accessor is most useful if the key and value can be absent from an object without affecting its validity. If the key and value are mandatory, use .: instead.
(
.:?= ) :: FromJSON a => Object -> Key -> Parser aAgda Agda.Interaction.JSON Retrieve the value associated with the given key of an Object. If the key is not present or the field is null and the omittedField is Just x for some x, the result will be that x.
(
-:> ) :: b -> SF a b -> SF a bYampa FRP.Yampa Output pre-insert operator. Insert a sample in the output, and from that point on, behave like the given sf.
(
-:> ) :: b -> SF a b -> SF a bYampa FRP.Yampa.Basic Output pre-insert operator. Insert a sample in the output, and from that point on, behave like the given sf.
(
...: ) :: FromJSON a => Object -> [Text] -> WarningParser aaeson-warning-parser Data.Aeson.WarningParser Synonym version of ..:.
(
...:? ) :: FromJSON a => Object -> [Text] -> WarningParser (Maybe a)aeson-warning-parser Data.Aeson.WarningParser Synonym version of ..:?.
(
..: ) :: FromJSON a => Object -> Text -> WarningParser aaeson-warning-parser Data.Aeson.WarningParser WarningParser version of .:.
(
..:? ) :: FromJSON a => Object -> Text -> WarningParser (Maybe a)aeson-warning-parser Data.Aeson.WarningParser WarningParser version of .:?.
(
.: ) :: FromJSON a => Object -> Text -> Parser aaeson-warning-parser Data.Aeson.WarningParser Extends the .: warning to include the field name that failed to parse.
(
.:? ) :: FromJSON a => Object -> Text -> Parser (Maybe a)aeson-warning-parser Data.Aeson.WarningParser Extends the .:? warning to include the field name that failed to parse.