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. TooManyReturnedKeys :: Int -> PullException

    casa-client Casa.Client

    No documentation available.

  2. deleteMany :: Uniquable a => [a] -> UniqMap b -> UniqMap b

    clash-lib Clash.Data.UniqMap

    Delete all entries in the map indexed by the uniques of the given values.

  3. insertMany :: Uniquable a => [(a, b)] -> UniqMap b -> UniqMap b

    clash-lib Clash.Data.UniqMap

    Insert a list of key-value pairs into the map.

  4. applyMany :: [(String, Rewrite extra)] -> Rewrite extra

    clash-lib Clash.Normalize.Strategy

    No documentation available.

  5. getAnyB :: AnyB b -> b

    cond Data.Algebra.Boolean

    No documentation available.

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

    configuration-tools Configuration.Utils.CommandLine

    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.

  7. AlignAny :: AlignStyle

    configurator-export Data.Configurator.Export

    Align them to the longest key.

  8. many :: forall (m :: Type -> Type) (n :: Type -> Type) s a . (Alternative m, Applicative n, Monoid s) => Format m n s a -> Format m n s [a]

    construct Construct

    Same as the usual many except a Format is no Functor, let alone Alternative.

  9. manyTill :: forall (m :: Type -> Type) (n :: Type -> Type) s a . (Alternative m, Applicative n, Monoid s) => Format m n s a -> Format m n s () -> Format m n s [a]

    construct Construct

    In the parsing direction, the same as the regular manyTill: parses the item zero or more times until the terminator succeeds. When serializing, makes sure to append the terminator. Beware, for performance reasons the function does not verify that no item's serialization can be parsed via the terminator.

  10. contramany :: Decidable f => f a -> f [a]

    contravariant-extras Contravariant.Extras

    No documentation available.

Page 218 of many | Previous | Next