DB
Size: a a a
DB
DT
DT
DT
DT
DB
DT
DB
DB
DT
DT
DT
RM
((
let test<'a> (xs: 'a seq) =
let e = xs.GetEnumerator()
seq {
while e.MoveNext() do
yield seq { yield e.Current }
}
[|Error: Enumeration already finished.;....
VL
VK
let test<'a> (xs: 'a seq) =
let e = xs.GetEnumerator()
seq {
while e.MoveNext() do
yield seq { yield e.Current }
}
[|Error: Enumeration already finished.;....
((
VK
[|
((
[|
test [| 1; 2; 3 |] |> Seq.toArray |> printfn "%A"
I