Int
struct Int : FixedWidthInteger, SignedInteger- 
                  
                  Getting the minutes value in Integer format and rest of the seconds DeclarationSwift func minutesFrom(seconds: Int, completion: @escaping ( _ minutes: Int, _ seconds: Int)->())ParameterssecondsCheck closure Return Valueclosure with minutes and seconds 
- 
                  
                  Converts to string DeclarationSwift public var toString: String
- 
                  
                  Converts to string with Roman number representation DeclarationSwift public var toRomanString: StringReturn ValueRoman value of year 
- 
                  
                  Checks if the integer is even. DeclarationSwift public var isEven: Bool
- 
                  
                  Checks if the integer is odd. DeclarationSwift public var isOdd: Bool
- 
                  
                  Checks if the integer is positive. DeclarationSwift public var isPositive: Bool
- 
                  
                  Checks if the integer is negative. DeclarationSwift public var isNegative: Bool
- 
                  
                  Converts integer value to Double. DeclarationSwift public var toDouble: Double
- 
                  
                  Converts integer value to Float. DeclarationSwift public var toFloat: Float
- 
                  
                  Converts integer value to CGFloat. DeclarationSwift public var toCGFloat: CGFloat
- 
                  
                  Converts integer value to UInt. DeclarationSwift public var toUInt: UInt
- 
                  
                  Converts integer value to Int32. DeclarationSwift public var toInt32: Int32
- 
                  
                  Converts integer value to a 0..<Int range. Useful in for loops. DeclarationSwift public var range: CountableRange<Int>
- 
                  
                  Returns number of digits in the integer. DeclarationSwift public var digits: Int
- 
                  
                  The digits of an integer represented in an array(from most significant to least). This method ignores leading zeros and sign DeclarationSwift public var digitArray: [Int]
- 
                  
                  Returns a random integer number in the range min…max, inclusive. DeclarationSwift public static func random(within: Range<Int>) -> Int
 Int Extension Reference
        Int Extension Reference