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. getAny :: Any -> Bool

    verset Verset

    No documentation available.

  2. many :: Alternative f => f a -> f [a]

    verset Verset

    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.

  3. isOnAnyVisibleWS :: Query Bool

    xmonad-contrib XMonad.Actions.GroupNavigation

    A query that matches all windows on visible workspaces. This is useful for configurations with multiple screens, and matches even invisible windows.

  4. many1 :: Parser a -> Parser [a]

    xmonad-contrib XMonad.Util.Parser

    Parse one or more occurrences of the given parser.

  5. manyTill :: Parser a -> Parser end -> Parser [a]

    xmonad-contrib XMonad.Util.Parser

    manyTill p end parses zero or more occurrences of p, until end succeeds. Returns a list of values returned by p.

  6. skipMany :: Parser a -> Parser ()

    xmonad-contrib XMonad.Util.Parser

    Like many, but discard the result.

  7. skipMany1 :: Parser a -> Parser ()

    xmonad-contrib XMonad.Util.Parser

    Like many1, but discard the result.

Page 296 of many | Previous | Next