Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created October 15, 2020 19:52
Show Gist options
  • Select an option

  • Save foxicode/ed997e48e552452ee70549404073b9f0 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/ed997e48e552452ee70549404073b9f0 to your computer and use it in GitHub Desktop.
Simple numeric conversions in Swift
import Foundation
// Int to Double
var i: Int = 1
var d: Double = Double(i)
// Double to Int
var i1: Int = Int(d)
var i2: Int = Int(1.1) // -> 1
var i3: Int = Int(1.9) // -> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment