replicate¶
-
replicate
(length: Uint, val) → Queue[val]¶
-
replicate
(din: Tuple[{'length': Uint, 'val': Any}]}]) → Queue[din["val"]] Replicates the data from the
val
inputlength
times in form of aQueue
.drv(t=Uint[4], seq=[5]) \ | replicate(4) \ | check(ref=[[5, 5, 5, 5]])