ios – Swari 1.2中的Variadic @ autoclosure?

ios – Swari 1.2中的Variadic @ autoclosure?,第1张

概述既然@autoclosure是参数声明的一部分而不是类型,那么如何声明函数采用可变量的自动爆破? 之前: public func coalesce<T>(all : @autoclosure () -> T? ...) -> T? { for f : () -> T? in all { if let x = f() { return x } } return 既然@autoclosure是参数声明的一部分而不是类型,那么如何声明函数采用可变量的自动爆破?

之前:

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?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1077362.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存