CurryInfo: base-3.4.0 / Control.Monad.replicateM_

definition: Info
 
replicateM_ :: (Applicative m) => Int -> m a -> m ()
replicateM_ cnt0 f =
    loop cnt0
  where
    loop cnt
        | cnt <= 0  = pure ()
        | otherwise = f *> loop (cnt - 1)
demand: Info
 arguments 1 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
Like 'replicateM', but discards the result.
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 ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term