Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
any' :: (AggregatedContext ac, SqlContext ac) => Predicate Flat -> Record ac (Maybe Bool)relational-schemas Database.Custom.SQLServer Aggregation function ANY.
any' :: (AggregatedContext ac, SqlContext ac) => Predicate Flat -> Record ac (Maybe Bool)relational-schemas Database.Custom.SQLite3 Aggregation function ANY.
anySentinel :: a -> Parser a e s asmith Data.Parser Consumes and returns the next token from the input. Returns the sentinel token if no tokens are left.
-
tuple-th TupleTH Like any.
anyTuple' :: Int -> Q Exp -> Q Exptuple-th TupleTH No documentation available.
anyM :: Monad m => (a -> m Bool) -> [a] -> m Boolverset Verset A version of any lifted to a monad. Retains the short-circuiting behaviour.
anyM Just [False,True ,undefined] == Just True anyM Just [False,False,undefined] == undefined \(f :: Int -> Maybe Bool) xs -> anyM f xs == orM (map f xs)
-
xmonad-contrib XMonad.Actions.CycleWS Cycle through all workspaces
anyMask :: [((KeyMask, b1), b2)] -> [((KeyMask, b1), b2)]xmonad-contrib XMonad.Config.Dmwit No documentation available.
-
yi-mode-javascript Yi.Syntax.JavaScript General recovery parser, inserts an error token.
many :: Alternative f => f a -> f [a]base Control.Applicative Zero or more.
Examples
>>> many (putStr "la") lalalalalalalalala... * goes on forever *
>>> many Nothing Just []
>>> take 5 <$> many (Just 1) * hangs forever *
Note that this function can be used with Parsers based on Applicatives. In that case many parser will attempt to parse parser zero or more times until it fails.