Pattern: PSequence
Output sequential values from a list.
Takes an input list, and repeats the items in this list.
Example output
>>> p = PSeq([ 1, 2, 3, 5 ])
>>> p.nextn(10)
[1, 2, 3, 5, 1, 2, 3, 5, 1, 2, 3, 5, 1, 2, 3, 5]
Output sequential values from a list.
Takes an input list, and repeats the items in this list.
>>> p = PSeq([ 1, 2, 3, 5 ])
>>> p.nextn(10)
[1, 2, 3, 5, 1, 2, 3, 5, 1, 2, 3, 5, 1, 2, 3, 5]