replicate -package:Cabal -package:containers -package:memory -package:hedgehog -package:conduit -package:base -is:exact is:exact -package:bytestring -package:rio
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) A vector of the given length with the same value in each
position.
Replicate a value to a given length
Replicate a value to a given length
O(n) A vector of the given length with the same value in each
position.
Create a mutable vector of the given length (0 if the length is
negative) and fill it with an initial value.
Create a mutable vector of the given length (0 if the length is
negative) and fill it with an initial value.
O(n) A vector of the given length with the same value in each
position.
Create a mutable vector of the given length (0 if the length is
negative) and fill it with an initial value.
O(n) A vector of the given length with the same value in each
position.
Create a mutable vector of the given length (0 if the length is
negative) and fill it with an initial value.
O(n) A vector of the given length with the same value in each
position.
Create a mutable vector of the given length (0 if the length is
negative) and fill it with an initial 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.
>>> replicate 0 True
[]
>>> replicate (-1) True
[]
>>> replicate 4 True
[True,True,True,True]
replicate n x is a
DList of length
n with
x as the value of every
element.
<math>(
n).
replicate obeys the law:
toList (replicate n x) = replicate n x
Repeat an element several times.
replicate n x is a sequence of length
n with
x as the value of every element.
> replicate 10 a :: Text
"aaaaaaaaaa"
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.