致命错误:只能将BidirectionalCollections提前负数

时间:2018-09-01 13:02:28

标签: swift set swift-playground xcode9.4

如何使用Xcode Playground将数组转换为Set?我们尝试过:

let a = Array(0 ..< 1000)
let s = Set(a)

这会在运行时生成:

  

致命错误:只能将BidirectionalCollections提前负数

Xcode 9.4 Playground和Xcode 10 beta 3 Playground都发生了这个问题。

1 个答案:

答案 0 :(得分:0)

此问题已在Xcode 10 beta 6和更高版本中修复,因此我更新了解决方法,仅适用于较早的swift版本。


对于较早的Xcode版本(例如Xcode 9.4),这可能是由于元素数量大于100引起的。

解决方法found by Karoy Lorentey 是自定义Set的游乐场描述:

#if !swift(>=4.2)
extension Set: CustomPlaygroundDisplayConvertible {
    public var playgroundDescription: Any {
        return description
    }
}
#endif

let a = Array(0 ..< 1000)
let s = Set(a)

这样做不会在运行时出错。