I am learning the new Apple language quickly, and I looked at the Swift module,
and saw that some common classes have the following statements:
extension ContiguousArray<T> : ArrayType {
init()
init<S : Sequence where T == T>(_ s: S)
}
I wonder what it means Where T == T?
I could not understand if anyone could help me?
source
share