我想在Swift中扩展Array以返回2D数组的每个数组或列中的单个元素。到目前为止,我有:
extension Array where // what goes here?
func getColumn( column: Int ) -> [ Int ] {
return self.map { $0[ column ] }
}
}
我相信我需要在where
之后以某种方式指定一个2D数组,但我一直无法找到正确的方法。
在where
之后指定2D数组的正确语法是什么?
我也很好奇是否有关于如何指定扩展程序中where
之后可用内容的良好文档。我在Apple's Swift extension documentation
提前致谢。
答案 0 :(得分:11)
您需要约束数组的Element
类型。下标方法在CollectionType
协议中定义:
public protocol CollectionType : Indexable, SequenceType {
// ...
public subscript (position: Self.Index) -> Self.Generator.Element { get }
// ...
}
因此,您可以为其元素为集合的数组定义扩展方法:
extension Array where Element : CollectionType {
func getColumn(column : Element.Index) -> [ Element.Generator.Element ] {
return self.map { $0[ column ] }
}
}
示例:
let a = [[1, 2, 3], [4, 5, 6]]
let c = a.getColumn(1)
print(c) // [2, 5]
您甚至可以将其定义为额外的下标方法:
extension Array where Element : CollectionType {
subscript(column column : Element.Index) -> [ Element.Generator.Element ] {
return map { $0[ column ] }
}
}
let a = [["a", "b", "c"], [ "d", "e", "f" ]]
let c = a[column: 2]
print(c) // ["c", "f"]
更新 Swift 3:
extension Array where Element : Collection {
func getColumn(column : Element.Index) -> [ Element.Iterator.Element ] {
return self.map { $0[ column ] }
}
}
或作为下标:
extension Array where Element : Collection {
subscript(column column : Element.Index) -> [ Element.Iterator.Element ] {
return map { $0[ column ] }
}
}