yinwang0.wordpress.com/2014/07/13/swift-array

In Xcode 6 beta2, we can write the following piece of code: let a = [1, 2] // a refers to an immutable array var b = a // b refers to the same array, but b is mutable b1 = 3 // change contents of...


Comments (0)

Sign in to post comments.