Avatar
let a: [Int] = [2, 3, 5] let b = a.lazy let c = b.flatMap { [$0, $0] } print(type(of: c)) LazyCollection<FlattenBidirectionalCollection<LazyMapBidirectionalCollection<Array<Int>, Array<Int>>>>
1:32 AM
これって @escaping じゃない SequenceflatMap 呼ぶのはどうすればいいんですっけ?