iOS Int Swift extensions, Codigo style
Miniumum deployment target is 9.0.
Swift 3
platform :ios, '9.0' # deployment target
use_frameworks!
pod 'CDGSwiftIntExtension'
10.isEven // true
11.isOdd // false
10.isPositive // true
10.isNegative // false
-10.isPositive // false
-10.isNegative // true
10.cgFloat // 4.0
10.double // 4.0
10.digits // 2
1000.digits // 4
CDGSwiftIntExtension is available under the MIT license. See the LICENSE file.
swift, extension, codigo