Skip to content

Instantly share code, notes, and snippets.

@mwrites
Created March 4, 2018 14:13
Show Gist options
  • Save mwrites/c973c1aae9f65684732458abe695e7a0 to your computer and use it in GitHub Desktop.
Save mwrites/c973c1aae9f65684732458abe695e7a0 to your computer and use it in GitHub Desktop.
Check if Float is Int
extension FloatingPoint {
var isInt: Bool {
#if swift(>=4.0)
return self.truncatingRemainder(dividingBy: 1) == 0
#else
return self % 1 == 0
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment