SN
Size: a a a
SN
X
VA
TK
NK
RM
A
((
[1;2] |> Seq.cycle |> Seq.take 5 -> 1;2;1;2;1
VS
VS
((
let rec cycle xs = seq { yield! xs; yield! cycle xs }
VS
VS
VS
PD
let rec cycle xs = seq { yield! xs; yield! cycle xs }
let cycle xs = Seq.initInfinite (fun _ -> xs) |> Seq.concat
SN
VA
VA