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.
(
.::. ) :: Tagged a b -> a -> bcrypto-api Crypto.Util Infix for operator
(
/: ) :: forall (scheme :: Scheme) . Url scheme -> Text -> Url schemereq Network.HTTP.Req A type-constrained version of (/~) to remove ambiguity in the cases when next URL piece is a Text literal.
(
=: ) :: (QueryParam param, ToHttpApiData a) => Text -> a -> paramreq 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)
(
<:> ) :: HeaderName -> ByteString -> MatchHeaderhspec-wai Test.Hspec.Wai No documentation available.
(
<:> ) :: HeaderName -> ByteString -> MatchHeaderhspec-wai Test.Hspec.Wai.Matcher No documentation available.
(
..: ) :: Index ix => ix -> ix -> Array D ix ixmassiv Data.Massiv.Array >>> Ix1 4 ..: 10 Array D Seq (Sz1 6) [ 4, 5, 6, 7, 8, 9 ]
(
..: ) :: Index ix => ix -> ix -> Array D ix ixmassiv Data.Massiv.Vector >>> Ix1 4 ..: 10 Array D Seq (Sz1 6) [ 4, 5, 6, 7, 8, 9 ]
-
monoid-extras Data.Monoid.MList No documentation available.
(
!: ) :: (MonadBaseControl IO wd, FromJSON a) => Object -> Text -> wd awebdriver Test.WebDriver.JSON This operator is a wrapper over Aeson's .: operator.
(
.:?? ) :: 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.