之前:
public func coalesce<T>(all : @autoclosure () -> T? ...) -> T? { for f : () -> T? in all { if let x = f() { return x } } return nil}
之后:???
解决方法 我打开了rdar:// 19782845,“Swift 1.2:不再支持Variadic自动关闭”,并得到了Apple Developer Relations的以下回复:总结This issue behaves as intended based on the following:
@autoclosure is only allowed on parameters of function type,and varargs is an array. This is not expected to work.
以上是内存溢出为你收集整理的ios – Swari 1.2中的Variadic @ autoclosure?全部内容,希望文章能够帮你解决ios – Swari 1.2中的Variadic @ autoclosure?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)