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. deriveManyStorePrimVector :: Q [Dec]

    store Data.Store.TH.Internal

    No documentation available.

  2. deriveManyStoreUnboxVector :: Q [Dec]

    store Data.Store.TH.Internal

    No documentation available.

  3. mkManyHasTypeHash :: [Q Type] -> Q [Dec]

    store Data.Store.TypeHash

    Deprecated: Use of Data.Store.TypeHash isn't recommended, as the hashes are too unstable for most uses. Please instead consider using Data.Store.Version. See https://github.com/fpco/store/issues/53

  4. mkManyHasTypeHash :: [Q Type] -> Q [Dec]

    store Data.Store.TypeHash.Internal

    Deprecated: Use of Data.Store.TypeHash isn't recommended, as the hashes are too unstable for most uses. Please instead consider using Data.Store.Version. See https://github.com/fpco/store/issues/53

  5. reifyManyTyDecls :: ((Name, Info) -> Q (Bool, [Name])) -> [Name] -> Q [(Name, Info)]

    store Data.Store.TypeHash.Internal

    No documentation available.

  6. combineMany :: C a v => (a, T a) -> (v, T v) -> v

    synthesizer-core Synthesizer.Interpolation.Class

    No documentation available.

  7. insertMany :: Monoid a => a -> TextZipper a -> TextZipper a

    text-zipper Data.Text.Zipper

    Insert many characters at the current cursor position. Move the cursor to the end of the inserted text.

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

    turtle Turtle

    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. tooManyRequests429 :: Set h Status => h () (With Response '[Status])

    webgear-core WebGear.Core.Trait.Status

    Too Many Requests 429 response

  10. pAnyElement :: forall (m :: Type -> Type) a . Monad m => ParserT m a -> ParserT m a

    xmlbf Xmlbf

    pAnyElement p runs a ParserT p inside the Element node at the current position, if any. Otherwise, if no such element exists, this parser fails. You can recover the name of the matched element using pName inside the given ParserT. However, if you already know beforehand the name of the element that you want to match, it's better to use pElement rather than pAnyElement. Leading whitespace is ignored. If you need to preserve that whitespace for some reason, capture it using pText before using pAnyElement. Consumes the matched element from the parser state.

Page 175 of many | Previous | Next