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.

  1. parseQueryParam :: FromHttpApiData a => Text -> Either Text a

    http-api-data Web.Internal.HttpApiData

    Parse query param value.

  2. parseQueryParamMaybe :: FromHttpApiData a => Text -> Maybe a

    http-api-data Web.Internal.HttpApiData

    Parse query param value in a Maybe.

    >>> parseQueryParamMaybe "true" :: Maybe Bool
    Just True
    

  3. parseQueryParamWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text a

    http-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
    

  4. 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)"
    

  5. leEq :: forall (a :: Nat) (b :: Nat) . (a <= b, b <= a) :- (a ~ b)

    constraints Data.Constraint.Nat

    No documentation available.

  6. clock_seq_hi_res :: UnpackedUUID -> Word8

    uuid Data.UUID.Util

    No documentation available.

  7. clock_seq_low :: UnpackedUUID -> Word8

    uuid Data.UUID.Util

    No documentation available.

  8. requireAttr :: Name -> AttrParser Text

    xml-conduit Text.XML.Stream.Parse

    Shortcut composition of force and attr.

  9. requireAttrRaw :: String -> ((Name, [Content]) -> Maybe b) -> AttrParser b

    xml-conduit Text.XML.Stream.Parse

    No documentation available.

  10. requestBodyFunc :: (Int -> IO (Maybe ByteString)) -> Int -> IO (IO ByteString)

    wai-extra Network.Wai.Handler.CGI

    No documentation available.

Page 232 of many | Previous | Next