Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. anyS :: Selective f => (a -> f Bool) -> [a] -> f Bool

    selective Control.Selective

    A lifted version of any. Retains the short-circuiting behaviour.

  2. anyM :: (Foldable f, Monad m) => (a -> m Bool) -> f a -> m Bool

    relude Relude.Foldable.Fold

    Monadic version of any.

    >>> anyM (readMaybe >=> pure . even) ["5", "10"]
    Just True
    
    >>> anyM (readMaybe >=> pure . even) ["10", "aba"]
    Just True
    
    >>> anyM (readMaybe >=> pure . even) ["aba", "10"]
    Nothing
    

  3. any_ :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m Bool

    streaming Streaming.Prelude

    No documentation available.

  4. anyEvent :: (Ord event, MonadInteract m w event) => m event

    yi-core Yi.Interact

    No documentation available.

  5. anyEvent :: (Ord event, MonadInteract m w event) => m event

    yi-core Yi.Keymap.Keys

    No documentation available.

  6. anyModeByName :: Text -> YiM AnyMode

    yi-core Yi.MiniBuffer

    No documentation available.

  7. anyModeByNameM :: Text -> YiM (Maybe AnyMode)

    yi-core Yi.MiniBuffer

    No documentation available.

  8. anyModeName :: AnyMode -> Text

    yi-core Yi.MiniBuffer

    No documentation available.

  9. anyExtension :: [String] -> FilePath -> a -> Bool

    yi-core Yi.Mode.Common

    When applied to an extensions list, creates a modeApplies function.

  10. anyOf :: Fold s t a b -> (a -> Bool) -> s -> Bool

    lens-family Lens.Family2

    Returns true if any of the referenced values satisfy the given predicate.

Page 55 of many | Previous | Next