我使用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
。我无法看到问题所在。