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.
sequence1 :: (Traversable1 t, Apply f) => t (f b) -> f (t b)semigroupoids Data.Semigroup.Traversable.Class No documentation available.
allEqual :: Eq a => [a] -> Boolutility-ht Data.List.HT >>> allEqual "aab" False >>> allEqual "aaa" True >>> allEqual "aa" True >>> allEqual "a" True >>> allEqual "" True
lessOrEqualLength :: [a] -> [b] -> Boolutility-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.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
makeBisequence :: Name -> Q Expbifunctors Data.Bifunctor.TH Generates a lambda expression which behaves like bisequence (without requiring a Bitraversable instance).
makeBisequenceA :: Name -> Q Expbifunctors Data.Bifunctor.TH Generates a lambda expression which behaves like bisequenceA (without requiring a Bitraversable instance).
makeBisequenceAOptions :: Options -> Name -> Q Expbifunctors Data.Bifunctor.TH Like makeBitraverseA, but takes an Options argument.
makeBisequenceOptions :: Options -> Name -> Q Expbifunctors Data.Bifunctor.TH Like makeBisequence, but takes an Options argument.
HttpExceptionRequest :: Request -> HttpExceptionContent -> HttpExceptionhttp-conduit Network.HTTP.Client.Conduit Most exceptions are specific to a Request. Inspect the HttpExceptionContent value for details on what occurred.
InvalidRequestHeader :: ByteString -> HttpExceptionContenthttp-conduit Network.HTTP.Client.Conduit The given request header is not compliant (e.g. has newlines)