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.

  1. biany :: Bifoldable t => (a -> Bool) -> (b -> Bool) -> t a b -> Bool

    relude 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
    

  2. getAny :: Any -> Bool

    relude Relude.Monoid

    No documentation available.

  3. matchAny :: (Message -> Process b) -> Match b

    distributed-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.

  4. matchAnyIf :: Serializable a => (a -> Bool) -> (Message -> Process b) -> Match b

    distributed-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.

  5. matchAny :: (Message -> Process b) -> Match b

    distributed-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.

  6. matchAnyIf :: Serializable a => (a -> Bool) -> (Message -> Process b) -> Match b

    distributed-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.

  7. newtype Many a

    pandoc-types Text.Pandoc.Builder

    No documentation available.

  8. Many :: Seq a -> Many a

    pandoc-types Text.Pandoc.Builder

    No documentation available.

  9. unMany :: Many a -> Seq a

    pandoc-types Text.Pandoc.Builder

    No documentation available.

  10. RequestedTooManyBytes :: GenError

    crypto-api Crypto.Classes.Exceptions

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

Page 133 of many | Previous | Next