Repeat()
Repeat()
返回一个value
的 Seq
.Indexed 重复times
次数。当times
没有定义时,返回一个无限Seq
的value
。
Repeat<T>(value: T, times?: number): Seq.Indexed<T>
示例
Repeat('foo') // ['foo','foo','foo',...]
Repeat('bar',4) // ['bar','bar','bar','bar']
返回一个value
的 Seq
.Indexed 重复times
次数。当times
没有定义时,返回一个无限Seq
的value
。
Repeat<T>(value: T, times?: number): Seq.Indexed<T>
Repeat('foo') // ['foo','foo','foo',...]
Repeat('bar',4) // ['bar','bar','bar','bar']