Hoogle Search
Within LTS Haskell 24.20 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
.!= ) :: Functor m => m (Maybe a) -> a -> m atoml-reader-parse TOML.Parse Assign default value to a parser that produces Maybe. Typically used together with .:?:
foo .:? "bar" .!= 10
(
.: ) :: (Index a, FromToml Value b) => a -> Text -> Parser btoml-reader-parse TOML.Parse No documentation available.
(
.:? ) :: (Index a, FromToml Value b) => a -> Text -> Parser (Maybe b)toml-reader-parse TOML.Parse No documentation available.
(
.= ) :: Codec field a -> (object -> field) -> Codec object atomland Toml.Codec.Di Operator to connect two operations:
- How to get field from object?
- How to write this field to toml?
data Foo = Foo { fooBar :: Int , fooBaz :: String } fooCodec :: TomlCodec Foo fooCodec = Foo <$> Toml.int "bar" .= fooBar <*> Toml.str "baz" .= fooBaz(
.: ) :: FromJSON a => Object -> Key -> Parser ayesod-auth-oauth2 Yesod.Auth.OAuth2.Prelude Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.
(
.:? ) :: FromJSON a => Object -> Key -> Parser (Maybe a)yesod-auth-oauth2 Yesod.Auth.OAuth2.Prelude 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.
(
.= ) :: (KeyValue e kv, ToJSON v) => Key -> v -> kvyesod-auth-oauth2 Yesod.Auth.OAuth2.Prelude No documentation available.
(
.* ) :: LeftModule r m => r -> m -> malgebra Numeric.Algebra No documentation available.
(
.* ) :: LeftModule r m => r -> m -> malgebra Numeric.Algebra.Class No documentation available.
(
.* ) :: LeftModule r m => r -> m -> malgebra Numeric.Module.Class No documentation available.