Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Separating multiple if conditions with commas in Swift

Tags:

swift

We already know multiple optional bindings can be used in a single if/guard statement by separating them with commas, but not with && e.g.

// Works as expected if let a = someOpt, b = someOtherOpt { } // Crashes if let a = someOpt && b = someOtherOpt { } 

Playing around with playgrounds, the comma-style format also seems to work for boolean conditions though I can't find this mentioned anywhere. e.g.

if 1 == 1, 2 == 2 { } // Seems to be the same as if 1 == 1 && 2 == 2 { } 

Is this an accepted method for evaluating multiple boolean conditions, and is the behaviour of , identical to that of && or are they technically different?

like image 626
Cailean Wilkinson Avatar asked Jul 08 '17 17:07

Cailean Wilkinson


1 Answers

Actually the result is not the same. Say that you have 2 statements in an if and && between them. If in the first one you create a let using optional binding, you won't be able to see it in the second statement. Instead, using a comma, you will.

Comma example:

if let cell = tableView.cellForRow(at: IndexPath(row: n, section: 0)), cell.isSelected {     //Everything ok } 

&& Example:

if let cell = tableView.cellForRow(at: IndexPath(row: n, section: 0)) && cell.isSelected {     //ERROR: Use of unresolved identifier 'cell'               } 

Hope this helps.

like image 149
mrc Avatar answered Sep 21 '22 11:09

mrc