replicate -package:Cabal is:exact -package:text -package:containers -package:bytestring 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 = fst (unfoldrN w (\u -> Just (u,u)) c)
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.
Examples
>>> replicate 0 True
[]
>>> replicate (-1) True
[]
>>> replicate 4 True
[True,True,True,True]
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.