replicate -package:Cabal -package:base -package:bytestring -package:dlist -package:vector package:rio

O(n) replicate n x is a ByteString of length n with x the value of every element. The following holds:
replicate w c = unfoldr w (\u -> Just (u,u)) c
This implemenation uses memset(3)
O(n) replicate n x is a ByteString of length n with x the value of every element.
replicate n x is a list of length n with x the value of every element. It is an instance of the more general genericReplicate, in which n may be of any integral type.
replicate n x is a sequence consisting of n copies of x.
O(n*m) replicate n t is a Text consisting of the input t repeated n times.
O(n*m) replicate n t is a Text consisting of the input t repeated n times.
O(n) Vector of the given length with the same value in each position
O(n) Vector of the given length with the same value in each position
O(n) Vector of the given length with the same value in each position
O(n) Vector of the given length with the same value in each position
Like replicateM, but discards the result.
replicateA is an Applicative version of replicate, and makes <math> calls to liftA2 and pure.
replicateA n x = sequenceA (replicate n x)
replicateM is a sequence counterpart of replicateM.
replicateM n x = sequence (replicate n x)
For base >= 4.8.0 and containers >= 0.5.11, replicateM is a synonym for replicateA.
O(n) Execute the monadic action the given number of times and store the results in a vector.
O(n) Execute the monadic action the given number of times and store the results in a vector.
O(n) Execute the monadic action the given number of times and store the results in a vector.
O(n) Execute the monadic action the given number of times and store the results in a vector.
The genericReplicate function is an overloaded version of replicate, which accepts any Integral value as the number of repetitions to make.