Skip to content

Instantly share code, notes, and snippets.

@fever324
Created November 16, 2016 19:12
Show Gist options
  • Save fever324/58a69f62501662cc0e34fa3ac019b9ab to your computer and use it in GitHub Desktop.
Save fever324/58a69f62501662cc0e34fa3ac019b9ab to your computer and use it in GitHub Desktop.
Roudn to Place Double Swift
extension Double {
/// Rounds the double to decimal places value
func roundTo(places:Int) -> Double {
let divisor = pow(10.0, Double(places))
return (self * divisor).rounded() / divisor
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment