Avatar
let a: [Int] = [2, 3, 5] let b = a.lazy let c: [Int] = b.flatMap { [$0, $0] } print(type(of: c)) Array<Int>