replicate
replicate n x is a list of length n with x the value of every element. It is an instance of the more general Data.List.genericReplicate, in which n may be of any integral type.
replicateM n act performs the action n times, gathering the results.
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*m) replicate n t is a Text consisting of the input t repeated n times.
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(log n). replicate n x is a sequence consisting of n copies of x.
O(n) replicate n x is a ByteString of length n with x the value of every element.
O(n*m) replicate n t is a Text consisting of the input t repeated n times.
O(n) replicate n x is a ByteString of length n with x the value of every element.