@@ -116,8 +116,15 @@ class ViewController: UIViewController {
116
116
f2 ( tuple)
117
117
}
118
118
119
+ do {
120
+ // var tuple = (i1:1, i2:2)
121
+ // f2(tuple) // compile error
122
+ }
123
+
119
124
do { // examples from the dev forums
120
125
126
+ /*
127
+
121
128
var array: [(Int, Int)] = []
122
129
123
130
// OK - literals
@@ -132,12 +139,45 @@ class ViewController: UIViewController {
132
139
array.append(const_tuple)
133
140
134
141
// NOK - var integer
135
- // var int_var = 1
136
- // array.append(int_var, 1)
142
+ var int_var = 1
143
+ array.append(int_var, 1)
137
144
138
145
// NOK - var tuple
139
- // var var_tuple: (Int, Int) = (1, 1)
140
- // array.append(var_tuple)
146
+ var var_tuple: (Int, Int) = (1, 1)
147
+ array.append(var_tuple)
148
+
149
+ */
150
+
151
+ // However, this changed in Swift 2.0 beta 3:
152
+ // New! You can now write it like a tuple!
153
+ // parentheses in parentheses
154
+
155
+
156
+ var array : [ ( Int , Int ) ] = [ ]
157
+
158
+
159
+ // OK - literals
160
+ array. append ( ( 1 , 1 ) )
161
+
162
+ // OK - let integer
163
+ let int_const = 1
164
+ array. append ( ( int_const, 1 ) )
165
+
166
+ // OK - let tuple
167
+ let const_tuple : ( Int , Int ) = ( 1 , 1 )
168
+ array. append ( const_tuple)
169
+
170
+ // OK - var integer
171
+ var int_var = 1
172
+ array. append ( ( int_var, 1 ) )
173
+
174
+ // OK - var tuple
175
+ var var_tuple : ( Int , Int ) = ( 1 , 1 )
176
+ array. append ( var_tuple)
177
+
178
+ // shut the compiler up
179
+ int_var = 0
180
+ var_tuple = ( 0 , 0 )
141
181
142
182
}
143
183
0 commit comments