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.

  1. any' :: (AggregatedContext ac, SqlContext ac) => Predicate Flat -> Record ac (Maybe Bool)

    relational-schemas Database.Custom.SQLServer

    Aggregation function ANY.

  2. any' :: (AggregatedContext ac, SqlContext ac) => Predicate Flat -> Record ac (Maybe Bool)

    relational-schemas Database.Custom.SQLite3

    Aggregation function ANY.

  3. anySentinel :: a -> Parser a e s a

    smith Data.Parser

    Consumes and returns the next token from the input. Returns the sentinel token if no tokens are left.

  4. anyTuple :: Int -> Q Exp

    tuple-th TupleTH

    Like any.

  5. anyTuple' :: Int -> Q Exp -> Q Exp

    tuple-th TupleTH

    No documentation available.

  6. anyM :: Monad m => (a -> m Bool) -> [a] -> m Bool

    verset 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)
    

  7. anyWS :: WSType

    xmonad-contrib XMonad.Actions.CycleWS

    Cycle through all workspaces

  8. anyMask :: [((KeyMask, b1), b2)] -> [((KeyMask, b1), b2)]

    xmonad-contrib XMonad.Config.Dmwit

    No documentation available.

  9. anything :: P s TT

    yi-mode-javascript Yi.Syntax.JavaScript

    General recovery parser, inserts an error token.

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

Page 92 of many | Previous | Next