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.

  1. (.!=) :: Functor m => m (Maybe a) -> a -> m a

    toml-reader-parse TOML.Parse

    Assign default value to a parser that produces Maybe. Typically used together with .:?:

    foo .:? "bar" .!= 10
    

  2. (.:) :: (Index a, FromToml Value b) => a -> Text -> Parser b

    toml-reader-parse TOML.Parse

    No documentation available.

  3. (.:?) :: (Index a, FromToml Value b) => a -> Text -> Parser (Maybe b)

    toml-reader-parse TOML.Parse

    No documentation available.

  4. (.=) :: Codec field a -> (object -> field) -> Codec object a

    tomland Toml.Codec.Di

    Operator to connect two operations:

    1. How to get field from object?
    2. How to write this field to toml?
    In code this should be used like this:
    data Foo = Foo
    { fooBar :: Int
    , fooBaz :: String
    }
    
    fooCodec :: TomlCodec Foo
    fooCodec = Foo
    <$> Toml.int "bar" .= fooBar
    <*> Toml.str "baz" .= fooBaz
    

  5. (.:) :: FromJSON a => Object -> Key -> Parser a

    yesod-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.

  6. (.:?) :: 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.

  7. (.=) :: (KeyValue e kv, ToJSON v) => Key -> v -> kv

    yesod-auth-oauth2 Yesod.Auth.OAuth2.Prelude

    No documentation available.

  8. (.*) :: LeftModule r m => r -> m -> m

    algebra Numeric.Algebra

    No documentation available.

  9. (.*) :: LeftModule r m => r -> m -> m

    algebra Numeric.Algebra.Class

    No documentation available.

  10. (.*) :: LeftModule r m => r -> m -> m

    algebra Numeric.Module.Class

    No documentation available.

Page 78 of many | Previous | Next