Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. sequence1 :: (Traversable1 t, Apply f) => t (f b) -> f (t b)

    semigroupoids Data.Semigroup.Traversable.Class

    No documentation available.

  2. allEqual :: Eq a => [a] -> Bool

    utility-ht Data.List.HT

    >>> allEqual "aab"
    False
    
    >>> allEqual "aaa"
    True
    
    >>> allEqual "aa"
    True
    
    >>> allEqual "a"
    True
    
    >>> allEqual ""
    True
    

  3. lessOrEqualLength :: [a] -> [b] -> Bool

    utility-ht Data.List.Match

    lessOrEqualLength x y is almost the same as compareLength x y <= EQ, but

    >>> lessOrEqualLength "" undefined
    True
    
    whereas compareLength [] undefined <= EQ = undefined.

  4. sequenceBia :: (Traversable t, Biapplicative p) => t (p b c) -> p (t b) (t c)

    bifunctors Data.Biapplicative

    Perform all the Biapplicative actions in a Traversable container and produce a container with all the results.

    sequenceBia = traverseBia id
    

  5. makeBisequence :: Name -> Q Exp

    bifunctors Data.Bifunctor.TH

    Generates a lambda expression which behaves like bisequence (without requiring a Bitraversable instance).

  6. makeBisequenceA :: Name -> Q Exp

    bifunctors Data.Bifunctor.TH

    Generates a lambda expression which behaves like bisequenceA (without requiring a Bitraversable instance).

  7. makeBisequenceAOptions :: Options -> Name -> Q Exp

    bifunctors Data.Bifunctor.TH

    Like makeBitraverseA, but takes an Options argument.

  8. makeBisequenceOptions :: Options -> Name -> Q Exp

    bifunctors Data.Bifunctor.TH

    Like makeBisequence, but takes an Options argument.

  9. HttpExceptionRequest :: Request -> HttpExceptionContent -> HttpException

    http-conduit Network.HTTP.Client.Conduit

    Most exceptions are specific to a Request. Inspect the HttpExceptionContent value for details on what occurred.

  10. InvalidRequestHeader :: ByteString -> HttpExceptionContent

    http-conduit Network.HTTP.Client.Conduit

    The given request header is not compliant (e.g. has newlines)

Page 172 of many | Previous | Next