标签: swift generics swift-protocols protocol-extension
在Swift中,可以扩展包含特定类型元素的序列,例如:
Rect<Float>
这很好。但是,如果Rect本身是泛型类型(例如Rect<Double>,extension SequenceType where Generator.Element == Rect<T> 等),我该如何做同样的事情?我试过了
Rect<Double>
extension SequenceType where Generator.Element == Rect<T>
self.webView.scalesPageToFit=TRUE;
但是编译器抱怨'未声明的类型T'。我无法弄清楚把它放在哪里。现在,我必须专注于每个浮点类型。