没有*候选人产生预期的上下文结果类型' FloatingPointRoundRule'

时间:2016-09-24 14:33:38

标签: swift

我使用Swift 3在extension Double { /// Rounds the double to decimal places value mutating func roundToPlaces(_ places:Int) -> Double { let divisor = pow(10.0, Double(places)) return round(self * divisor) / divisor } } 行上使用此代码从标题中获取错误:

round

有人知道这是什么意思吗?从我看到的内容Double获取Double并返回StringReprOps.prettyIndex。我无法看到问题所在。

0 个答案:

没有答案