replicate -package:Cabal -package:base -package:bytestring -package:conduit -package:dlist -package:protolude -package:rio -package:mono-traversable
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.
replicate n x is a sequence consisting of
n copies of x.
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 0 True
[]
>>> replicate (-1) True
[]
>>> replicate 4 True
[True,True,True,True]
Create a bytearray of a specific size containing a repeated byte value
Create a bytearray of a specific size containing a repeated byte value
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]
Repeat an element several times.
Replicate a
ShortText.
A repetition count smaller than 1 results in an empty string result.
>>> replicate 3 "jobs!"
"jobs!jobs!jobs!"
>>> replicate 10000 ""
""
>>> replicate 0 "nothing"
""
length (replicate n t) == max 0 n * length t
Replicate a byte n times.
Repeat the byte sequence over and over. Returns empty chunks when
given a negative repetition count.
Generate a structure with the specified length with every element set
to the item passed in. See also
genericReplicate
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 = Stream.take n . Stream.repeat
Generate a stream of length
n by repeating a value
n
times.
Replicate the given YiString set number of times, concatenating the
results. Also see
replicateChar.
O(n) replicate n x is a
Vector of length
n with
x the value of every element.