I need to check if a double-defined variable is convertible to Int without losing its value. This doesn't work because they are of different types:
if self.value == Int(self.value)
where self.value is a double.
self.value
Try 'flooring' the double value then checking if it is unchanged:
let dbl = 2.0 let isInteger = floor(dbl) == dbl // true
Fails if it is not an integer
let dbl = 2.4 let isInteger = floor(dbl) == dbl // false
1.4m articles
1.4m replys
5 comments
57.0k users