CurryInfo: base-3.4.0 / Control.Monad.replicateM

definition: Info
 
replicateM :: (Applicative m) => Int -> m a -> m [a]
replicateM cnt0 f =
    loop cnt0
  where
    loop cnt
        | cnt <= 0  = pure []
        | otherwise = liftA2 (:) f (loop (cnt - 1))
demand: Info
 arguments 1 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
@'replicateM' n act@ performs the action @n@ times,
gathering the results.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 replicateM
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Applicative a => Prelude.Int -> a b -> a [b]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term