Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. skipManyTill :: forall s u (m :: Type -> Type) a b . ParsecT s u m a -> ParsecT s u m b -> ParsecT s u m ()

    commonmark Commonmark.TokParsers

    Apply p many times until stop succeeds, discarding results.

  2. matchAny :: MatchRule

    dbus DBus.Client

    Match any signal.

  3. fromAnyEffect :: forall (e :: Effect) . AnyEffect -> EffectRep (DispatchOf e) e

    effectful-core Effectful.Internal.Env

    No documentation available.

  4. fromAnyRelinker :: forall (e :: Effect) . AnyRelinker -> Relinker (EffectRep (DispatchOf e)) e

    effectful-core Effectful.Internal.Env

    No documentation available.

  5. toAnyEffect :: forall (e :: Effect) . EffectRep (DispatchOf e) e -> AnyEffect

    effectful-core Effectful.Internal.Env

    No documentation available.

  6. toAnyRelinker :: forall (e :: Effect) . Relinker (EffectRep (DispatchOf e)) e -> AnyRelinker

    effectful-core Effectful.Internal.Env

    No documentation available.

  7. fromAny :: (Any :: Type) -> a

    effectful-core Effectful.Internal.Utils

    No documentation available.

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

    effectful-core Effectful.NonDet

    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.

  9. pMany :: Text -> (Element -> Maybe a) -> [Element] -> [a]

    feed Text.Atom.Feed.Import

    No documentation available.

  10. pMany :: Text -> (Element -> Maybe a) -> [Element] -> [a]

    feed Text.RSS.Import

    No documentation available.

Page 168 of many | Previous | Next