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. TooManyColumns :: ErrorCode

    hpqtypes Database.PostgreSQL.PQTypes.Internal.Error.Code

    No documentation available.

  2. TooManyConnections :: ErrorCode

    hpqtypes Database.PostgreSQL.PQTypes.Internal.Error.Code

    No documentation available.

  3. TooManyRows :: ErrorCode

    hpqtypes Database.PostgreSQL.PQTypes.Internal.Error.Code

    No documentation available.

  4. manyN :: forall s u (m :: Type -> Type) a . Int -> ParsecT s u m a -> ParsecT s u m [a]

    hsemail Text.Parsec.Rfc2234

    Match a parser at least n times.

  5. manyNtoM :: forall s u (m :: Type -> Type) a . Int -> Int -> ParsecT s u m a -> ParsecT s u m [a]

    hsemail Text.Parsec.Rfc2234

    Match a parser at least n times, but no more than m times.

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

    list-transformer List.Transformer

    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. rwsMagnifyMany :: forall k m w c (is :: IxList) a b s . (Is k A_Fold, Monad m, Monoid w, Monoid c) => Optic' k is a b -> (b -> s -> m (c, s, w)) -> a -> s -> m (c, s, w)

    optics-extra Optics.Extra.Internal.Zoom

    No documentation available.

  8. rwsZoomMany :: forall k m w c (is :: IxList) t s r . (Is k A_Traversal, Monad m, Monoid w, Monoid c) => Optic' k is t s -> (r -> s -> m (c, s, w)) -> r -> t -> m (c, t, w)

    optics-extra Optics.Extra.Internal.Zoom

    No documentation available.

  9. stateZoomMany :: forall k m c (is :: IxList) t s . (Is k A_Traversal, Monad m, Monoid c) => Optic' k is t s -> (s -> m (c, s)) -> t -> m (c, t)

    optics-extra Optics.Extra.Internal.Zoom

    No documentation available.

  10. class (MonadReader b m, MonadReader a n, Magnify m n b a) => MagnifyMany (m :: Type -> Type) (n :: Type -> Type) b a | m -> b, n -> a, m a -> n, n b -> m

    optics-extra Optics.Zoom

    Extends Magnify with an ability to magnify using a Fold over multiple targets so that actions for each one are executed sequentially and the results are aggregated. There is however no sensible instance of MagnifyMany for StateT.

Page 179 of many | Previous | Next