Hoogle Search

Within LTS Haskell 24.57 (ghc-9.10.3)

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

  1. manyN :: Int -> Parser a -> Parser [a]

    hweblib Network.Parser.Rfc2234

    Match a parser at least N times.

  2. manyNtoM :: Int -> Int -> Parser a -> Parser [a]

    hweblib Network.Parser.Rfc2234

    Match a parser at least N times, but no more than M times.

  3. tryAny :: forall (r :: EffectRow) a . Member (Embed IO) r => IO a -> Sem r (Either Text a)

    incipit-core Incipit.Exception

    Run an IO via Embed and catch all exceptions, returning Either.

  4. tryAny_ :: forall (r :: EffectRow) . Member (Embed IO) r => IO () -> Sem r ()

    incipit-core Incipit.Exception

    Run an IO via Embed and catch and ignore all exceptions.

  5. manyReverse :: Parser a -> Parser [a]

    json-stream Data.JsonStream.Parser

    Identical to fmap reverse . many but more efficient. If you don't care about the order of the results but plan to fully evaluate the list, this can be slightly more efficient than many as it avoids the accumulating thunks.

  6. TyAny :: BuiltinType

    language-c Language.C.Analysis.SemRep

    No documentation available.

  7. addIdMany :: MonadMPD m => Path -> Maybe Position -> m [Id]

    libmpd Network.MPD.Commands.Extensions

    Recursive addId. For directories, it will use the given position for the first file in the directory and use the successor for the remaining files. It returns a list of playlist ids for the songs added.

  8. addMany :: MonadMPD m => PlaylistName -> [Path] -> m ()

    libmpd Network.MPD.Commands.Extensions

    Add a list of songs/folders to a playlist. Should be more efficient than running add many times.

  9. sAny :: (a -> Bool) -> SFlow a Bool

    midair Midair.Handy

    Return True if any input signals have passed the predicate, False otherwise

  10. sAnyHS :: (a -> Bool) -> Maybe Bool -> SFlow a Bool

    midair Midair.Handy

    Hotswap version of sAny

Page 292 of many | Previous | Next