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. deleteMany :: Ord a => a -> Occur -> MultiSet a -> MultiSet a

    multiset Data.MultiSet

    O(log n). Delete an element from a multiset a given number of times. Negative numbers add occurrences of the given element.

  2. insertMany :: Ord a => a -> Occur -> MultiSet a -> MultiSet a

    multiset Data.MultiSet

    O(log n). Insert an element in a multiset a given number of times. Negative numbers remove occurrences of the given element.

  3. many_kets_solution :: (Scalar a, Fractional a) => [[a]] -> [[a]] -> [[a]]

    numeric-quest Orthogonals

    No documentation available.

  4. many_kets_triangle :: (Scalar a, Fractional a) => [[a]] -> [[a]] -> [([a], [a])]

    numeric-quest Orthogonals

    No documentation available.

  5. many :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m [a]

    parsec-class Text.Parsec.Class

    many p applies the parser p zero or more times. Returns a list of the returned values of p.

    identifier  = do{ c  <- letter
    ; cs <- many (alphaNum <|> char '_')
    ; return (c:cs)
    }
    

  6. many1 :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m [a]

    parsec-class Text.Parsec.Class

    many1 p applies the parser p one or more times. Returns a list of the returned values of p.

    word  = many1 letter
    

  7. manyAccum :: forall a s u (m :: Type -> Type) . (a -> [a] -> [a]) -> ParsecT s u m a -> ParsecT s u m [a]

    parsec-class Text.Parsec.Class

    No documentation available.

  8. manyTill :: forall s (m :: Type -> Type) t u a end . Stream s m t => ParsecT s u m a -> ParsecT s u m end -> ParsecT s u m [a]

    parsec-class Text.Parsec.Class

    manyTill p end applies parser p zero or more times until parser end succeeds. Returns the list of values returned by p. This parser can be used to scan comments:

    simpleComment   = do{ string "<!--"
    ; manyTill anyChar (try (string "-->"))
    }
    
    Note the overlapping parsers anyChar and string "-->", and therefore the use of the try combinator.

  9. skipMany :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m ()

    parsec-class Text.Parsec.Class

    skipMany p applies the parser p zero or more times, skipping its result.

    spaces  = skipMany space
    

  10. skipMany1 :: forall s (m :: Type -> Type) t u a . Stream s m t => ParsecT s u m a -> ParsecT s u m ()

    parsec-class Text.Parsec.Class

    skipMany1 p applies the parser p one or more times, skipping its result.

Page 200 of many | Previous | Next