Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
biany :: Bifoldable t => (a -> Bool) -> (b -> Bool) -> t a b -> Boolrelude Relude.Foldable.Reexport Determines whether any element of the structure satisfies its appropriate predicate argument. Empty structures yield False.
Examples
Basic usage:>>> biany even isDigit (27, 't') False
>>> biany even isDigit (27, '8') True
>>> biany even isDigit (26, 't') True
>>> biany even isDigit (Left 27) False
>>> biany even isDigit (Left 26) True
>>> biany even isDigit (BiList [27, 53] ['t', '8']) True
Empty structures yield False:>>> biany even isDigit (BiList [] []) False
-
relude Relude.Monoid No documentation available.
matchAny :: (Message -> Process b) -> Match bdistributed-process Control.Distributed.Process Match against an arbitrary message. matchAny removes the first available message from the process mailbox. To handle arbitrary raw messages once removed from the mailbox, see handleMessage and unwrapMessage.
matchAnyIf :: Serializable a => (a -> Bool) -> (Message -> Process b) -> Match bdistributed-process Control.Distributed.Process Match against an arbitrary message. Intended for use with handleMessage and unwrapMessage, this function only removes a message from the process mailbox, if the supplied condition matches. The success (or failure) of runtime type checks deferred to handleMessage and friends is irrelevant here, i.e., if the condition evaluates to True then the message will be removed from the process mailbox and decoded, but that does not guarantee that an expression passed to handleMessage will pass the runtime type checks and therefore be evaluated.
matchAny :: (Message -> Process b) -> Match bdistributed-process Control.Distributed.Process.Internal.Primitives Match against an arbitrary message. matchAny removes the first available message from the process mailbox. To handle arbitrary raw messages once removed from the mailbox, see handleMessage and unwrapMessage.
matchAnyIf :: Serializable a => (a -> Bool) -> (Message -> Process b) -> Match bdistributed-process Control.Distributed.Process.Internal.Primitives Match against an arbitrary message. Intended for use with handleMessage and unwrapMessage, this function only removes a message from the process mailbox, if the supplied condition matches. The success (or failure) of runtime type checks deferred to handleMessage and friends is irrelevant here, i.e., if the condition evaluates to True then the message will be removed from the process mailbox and decoded, but that does not guarantee that an expression passed to handleMessage will pass the runtime type checks and therefore be evaluated.
-
pandoc-types Text.Pandoc.Builder No documentation available.
-
pandoc-types Text.Pandoc.Builder No documentation available.
-
pandoc-types Text.Pandoc.Builder No documentation available.
RequestedTooManyBytes :: GenErrorcrypto-api Crypto.Classes.Exceptions Requested more bytes than a single pass can generate (The maximum request is generator dependent)