Avatar
生成時だけか
11:39 AM
11:43 AM
typealias NestedArray<T> = Array<Array<T>> where T: Equatable extension NestedArray { var hello: String { return "hello" } } [[(), ()], []].hello // OK!! let x: NestedArray<Void> = [[(),()],[]] // compile error
11:43 AM