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. sqlWhereEqualsAny :: (MonadState v m, SqlWhere v, Show a, ToSQL a) => SQL -> [a] -> m ()

    hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder

    Similar to sqlWhereIn, but uses ANY instead of SELECT UNNEST.

  2. ManyDisplay :: [Display] -> Display

    ihaskell IHaskell.Display

    No documentation available.

  3. many :: [Display] -> Display

    ihaskell IHaskell.Display

    Encode many displays into a single one. All will be output.

  4. ManyDisplay :: [Display] -> Display

    ihaskell IHaskell.Types

    No documentation available.

  5. Many :: Multiplicity

    ihaskell IHaskellPrelude

    No documentation available.

  6. compactContainsAny# :: a -> State# RealWorld -> (# State# RealWorld, Int# #)

    ihaskell IHaskellPrelude

    Returns 1# if the object is in any CNF at all, 0# otherwise.

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

    incipit-base Incipit.Base

    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.

  8. concatMany :: (MonoidAlternative f, Semigroup a, Monoid a) => f a -> f a

    incremental-parser Control.Applicative.Monoid

    Zero or more argument occurrences like many, but concatenated.

  9. concatMany :: (MonoidAlternative f, Semigroup a, Monoid a) => f a -> f a

    incremental-parser Text.ParserCombinators.Incremental

    Zero or more argument occurrences like many, but concatenated.

  10. defaultMany :: (Monoid s, Alternative (Parser t s)) => Parser t s r -> Parser t s [r]

    incremental-parser Text.ParserCombinators.Incremental

    No documentation available.

Page 197 of many | Previous | Next