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.

  1. (.::.) :: Tagged a b -> a -> b

    crypto-api Crypto.Util

    Infix for operator

  2. (/:) :: forall (scheme :: Scheme) . Url scheme -> Text -> Url scheme

    req Network.HTTP.Req

    A type-constrained version of (/~) to remove ambiguity in the cases when next URL piece is a Text literal.

  3. (=:) :: (QueryParam param, ToHttpApiData a) => Text -> a -> param

    req Network.HTTP.Req

    This operator builds a query parameter that will be included in URL of your request after the question sign ?. This is the same syntax you use with form URL encoded request bodies. This operator is defined in terms of queryParam:

    name =: value = queryParam name (pure value)
    

  4. (<:>) :: HeaderName -> ByteString -> MatchHeader

    hspec-wai Test.Hspec.Wai

    No documentation available.

  5. (<:>) :: HeaderName -> ByteString -> MatchHeader

    hspec-wai Test.Hspec.Wai.Matcher

    No documentation available.

  6. (..:) :: Index ix => ix -> ix -> Array D ix ix

    massiv Data.Massiv.Array

    Handy synonym for range Seq

    >>> Ix1 4 ..: 10
    Array D Seq (Sz1 6)
    [ 4, 5, 6, 7, 8, 9 ]
    

  7. (..:) :: Index ix => ix -> ix -> Array D ix ix

    massiv Data.Massiv.Vector

    Handy synonym for range Seq

    >>> Ix1 4 ..: 10
    Array D Seq (Sz1 6)
    [ 4, 5, 6, 7, 8, 9 ]
    

  8. (*:) :: a -> l -> a ::: l

    monoid-extras Data.Monoid.MList

    No documentation available.

  9. (!:) :: (MonadBaseControl IO wd, FromJSON a) => Object -> Text -> wd a

    webdriver Test.WebDriver.JSON

    This operator is a wrapper over Aeson's .: operator.

  10. (.:??) :: FromJSON a => Object -> Text -> Parser (Maybe a)

    webdriver Test.WebDriver.JSON

    Due to a breaking change in the .:? operator of aeson 0.10 (see https://github.com/bos/aeson/issues/287) that was subsequently reverted, this operator was added to provide consistent behavior compatible with all aeson versions. If the field is either missing or Null, this operator should return a Nothing result.

Page 82 of many | Previous | Next