Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. hrFinalRequest :: forall body f . Functor f => (Request -> f Request) -> HistoriedResponse body -> f (HistoriedResponse body)

    wreq Network.Wreq.Lens

    A lens onto the final request of a historied response.

  2. data Req

    wreq Network.Wreq.Types

    A request that is ready to be submitted.

  3. reqURL :: Req -> ByteString

    wreq Network.Wreq.Types

    Return the URL associated with the given Req. This includes the port number if not standard, and the query string if one exists.

  4. seq :: a -> b -> b

    basement Basement.Compat.Base

    The value of seq a b is bottom if a is bottom, and otherwise equal to b. In other words, it evaluates the first argument a to weak head normal form (WHNF). seq is usually introduced to improve performance by avoiding unneeded laziness. A note on evaluation order: the expression seq a b does not guarantee that a will be evaluated before b. The only guarantee given by seq is that the both a and b will be evaluated before seq returns a value. In particular, this means that b may be evaluated before a. If you need to guarantee a specific order of evaluation, you must use the function pseq from the "parallel" package.

  5. seq :: a -> b -> b

    basement Basement.Imports

    The value of seq a b is bottom if a is bottom, and otherwise equal to b. In other words, it evaluates the first argument a to weak head normal form (WHNF). seq is usually introduced to improve performance by avoiding unneeded laziness. A note on evaluation order: the expression seq a b does not guarantee that a will be evaluated before b. The only guarantee given by seq is that the both a and b will be evaluated before seq returns a value. In particular, this means that b may be evaluated before a. If you need to guarantee a specific order of evaluation, you must use the function pseq from the "parallel" package.

  6. deepseq :: NormalForm a => a -> b -> b

    basement Basement.NormalForm

    No documentation available.

  7. sequence :: forall m (n :: Nat) a . Monad m => ListN n (m a) -> m (ListN n a)

    basement Basement.Sized.List

    Evaluate each monadic action in the list sequentially, and collect the results.

  8. sequence_ :: forall m (n :: Nat) a . Monad m => ListN n (m a) -> m ()

    basement Basement.Sized.List

    Evaluate each monadic action in the list sequentially, and ignore the results.

  9. RequestedTooManyBytes :: GenError

    crypto-api Crypto.Classes.Exceptions

    Requested more bytes than a single pass can generate (The maximum request is generator dependent)

  10. RequestedTooManyBytes :: GenError

    crypto-api Crypto.Random

    Requested more bytes than a single pass can generate (The maximum request is generator dependent)

Page 309 of many | Previous | Next