9 lines
100 B
Swift
9 lines
100 B
Swift
|
import Foundation
|
||
|
|
||
|
extension Double {
|
||
|
|
||
|
var roundedInt: Int {
|
||
|
Int(rounded())
|
||
|
}
|
||
|
}
|