Skip to content

Instantly share code, notes, and snippets.

@ajjames
Created August 2, 2021 20:03
Show Gist options
  • Save ajjames/09d0e2b83fe21cba0a644ac662ced471 to your computer and use it in GitHub Desktop.
Save ajjames/09d0e2b83fe21cba0a644ac662ced471 to your computer and use it in GitHub Desktop.
Common Float Extension
import Foundation
extension Float {
var toOneDecimalPlace: String { String(format: "%.1f", self) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment