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. smallcheckManyStore :: Bool -> Int -> [TypeQ] -> ExpQ

    store Data.Store.TH

    Test a Store instance using smallcheck and hspec.

  2. deriveManyStoreFromStorable :: (Type -> Bool) -> Q [Dec]

    store Data.Store.TH.Internal

    No documentation available.

  3. deriveManyStorePrimVector :: Q [Dec]

    store Data.Store.TH.Internal

    No documentation available.

  4. deriveManyStoreUnboxVector :: Q [Dec]

    store Data.Store.TH.Internal

    No documentation available.

  5. 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

  6. 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

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

    store Data.Store.TypeHash.Internal

    No documentation available.

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

    synthesizer-core Synthesizer.Interpolation.Class

    No documentation available.

  9. 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.

  10. 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.

Page 173 of many | Previous | Next