Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
parseQueryParam :: FromHttpApiData a => Text -> Either Text ahttp-api-data Web.Internal.HttpApiData Parse query param value.
parseQueryParamMaybe :: FromHttpApiData a => Text -> Maybe ahttp-api-data Web.Internal.HttpApiData Parse query param value in a Maybe.
>>> parseQueryParamMaybe "true" :: Maybe Bool Just True
parseQueryParamWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text ahttp-api-data Web.Internal.HttpApiData Case insensitive. Parse given text case insensitive and then parse the rest of the input using parseQueryParam.
>>> parseQueryParamWithPrefix "z" "z10" :: Either Text Int Right 10
parseQueryParams :: (Traversable t, FromHttpApiData a) => t Text -> Either Text (t a)http-api-data Web.Internal.HttpApiData Parse multiple query parameters.
>>> parseQueryParams ["1", "2", "3"] :: Either Text [Int] Right [1,2,3] >>> parseQueryParams ["64", "128", "256"] :: Either Text [Word8] Left "out of bounds: `256' (should be between 0 and 255)"
leEq :: forall (a :: Nat) (b :: Nat) . (a <= b, b <= a) :- (a ~ b)constraints Data.Constraint.Nat No documentation available.
clock_seq_hi_res :: UnpackedUUID -> Word8uuid Data.UUID.Util No documentation available.
clock_seq_low :: UnpackedUUID -> Word8uuid Data.UUID.Util No documentation available.
requireAttr :: Name -> AttrParser Textxml-conduit Text.XML.Stream.Parse requireAttrRaw :: String -> ((Name, [Content]) -> Maybe b) -> AttrParser bxml-conduit Text.XML.Stream.Parse No documentation available.
requestBodyFunc :: (Int -> IO (Maybe ByteString)) -> Int -> IO (IO ByteString)wai-extra Network.Wai.Handler.CGI No documentation available.