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