splash/Sources/Splash/Extensions/Int/Int+IsOdd.swift

14 lines
193 B
Swift
Raw Normal View History

2018-08-24 18:42:07 +02:00
/**
* Splash
* Copyright (c) John Sundell 2018
* MIT license - see LICENSE.md
*/
import Foundation
internal extension Int {
var isEven: Bool {
return self % 2 == 0
}
}