In swift the following syntax is allowed for flow control
if let constantName = someOptional { statements }
In this context wh
In Swift 1.2 and 2.1, you can do this:
if let constantName = someOptional, constantName2 = someOptional2 { // statements }