Is there a way to work with reverse ranges in Swift?
For example:
for i in 5...1 { // do something }
is an infinite loop.
Xcode 7, beta 2:
for i in (1...5).reverse() { // do something }