Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (.&.) :: Bits a => a -> a -> a

    ghc GHC.Prelude.Basic

    No documentation available.

  2. (.|.) :: Bits a => a -> a -> a

    ghc GHC.Prelude.Basic

    No documentation available.

  3. (.=) :: String -> Json -> (String, Json)

    Cabal Distribution.Utils.Json

    A shorthand for building up JsonObjects >>> JsonObject [ "a" .= JsonNumber 42, "b" .= JsonBool True ] JsonObject [("a",JsonNumber 42),("b",JsonBool True)]

  4. type family (l1 :: [Type]) .++ (l2 :: [Type]) :: [Type]

    servant-server Servant.Server

    Append two type-level lists. Import it as

    import Servant.API.TypeLevel.List (type (.++))
    

  5. (.++) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)

    servant-server Servant.Server

    Append two contexts.

  6. (.++) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)

    servant-server Servant.Server.Internal.Context

    Append two contexts.

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

    yesod-core Yesod.Core.Json

    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.

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

    yesod-core Yesod.Core.Json

    No documentation available.

  9. (.->.) :: Type -> Type -> Type

    haskell-src-meta Language.Haskell.Meta.Syntax.Translate

    No documentation available.

  10. (.|) :: (b -> c) -> Strategy b -> (a -> b) -> a -> c

    parallel Control.Parallel.Strategies

    Sequential function composition. The result of the second function is evaluated using the given strategy, and then given to the first function.

Page 15 of many | Previous | Next