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.
anyS :: Selective f => (a -> f Bool) -> [a] -> f Boolselective Control.Selective A lifted version of any. Retains the short-circuiting behaviour.
anyM :: (Foldable f, Monad m) => (a -> m Bool) -> f a -> m Boolrelude 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
any_ :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m Boolstreaming Streaming.Prelude No documentation available.
anyEvent :: (Ord event, MonadInteract m w event) => m eventyi-core Yi.Interact No documentation available.
anyEvent :: (Ord event, MonadInteract m w event) => m eventyi-core Yi.Keymap.Keys No documentation available.
anyModeByName :: Text -> YiM AnyModeyi-core Yi.MiniBuffer No documentation available.
anyModeByNameM :: Text -> YiM (Maybe AnyMode)yi-core Yi.MiniBuffer No documentation available.
anyModeName :: AnyMode -> Textyi-core Yi.MiniBuffer No documentation available.
anyExtension :: [String] -> FilePath -> a -> Boolyi-core Yi.Mode.Common When applied to an extensions list, creates a modeApplies function.
anyOf :: Fold s t a b -> (a -> Bool) -> s -> Boollens-family Lens.Family2 Returns true if any of the referenced values satisfy the given predicate.