mirror of
https://github.com/otaviocc/Triton.git
synced 2026-01-29 19:54:27 +00:00
7 lines
114 B
Swift
7 lines
114 B
Swift
extension Int {
|
|
|
|
/// Returns a double from integer.
|
|
var doubleValue: Double {
|
|
.init(self)
|
|
}
|
|
}
|