_ArrayType在Swift 3中的位置是什么?

时间:2016-09-26 16:41:50

标签: ios swift swift3 swift-protocols

我有一些代码用于在Swift 3之前的_ArrayType中继。我试图了解公共协议_ArrayType发生了什么。

有什么想法吗?

1 个答案:

答案 0 :(得分:6)

_ArrayType已重命名为_ArrayProtocol。您可以在ArrayType.swift文件和this commit中看到这一点。

internal protocol _ArrayProtocol
  : RangeReplaceableCollection,
    ExpressibleByArrayLiteral
{
    // ...
}