Fatal error: Only BidirectionalCollections can be advanced by a negative amount
Fatal error: Only BidirectionalCollections can be advanced by a negative amount
如何使用 Xcode Playground 将数组转换为集合?我们尝试了:
let a = Array(0 ..< 1000)
let s = Set(a)
这在 运行 时间产生:
Fatal error: Only BidirectionalCollections can be advanced by a negative amount
Xcode 9.4 Playground 和 Xcode 10 beta 3 Playground 均出现问题。
这在 Xcode 10 beta 6 和更新版本中已修复,因此我更新了解决方法以仅适用于较旧的 swift 版本。
对于较旧的 Xcode 版本(如 Xcode 9.4),这可能是由于元素数量大于 100 造成的。
解决方法 由 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)
这样做在运行时不会出错。
如何使用 Xcode Playground 将数组转换为集合?我们尝试了:
let a = Array(0 ..< 1000)
let s = Set(a)
这在 运行 时间产生:
Fatal error: Only BidirectionalCollections can be advanced by a negative amount
Xcode 9.4 Playground 和 Xcode 10 beta 3 Playground 均出现问题。
这在 Xcode 10 beta 6 和更新版本中已修复,因此我更新了解决方法以仅适用于较旧的 swift 版本。
对于较旧的 Xcode 版本(如 Xcode 9.4),这可能是由于元素数量大于 100 造成的。
解决方法 由 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)
这样做在运行时不会出错。