What is a Swift array equivalent to NSMutableArray\'s -removeObjectsAtIndexes:? Removing each index one by one doesn\'t work, as remaining indexes
NSMutableArray
-removeObjectsAtIndexes:
one way is:
var arrayB = arrayA.removeAtIndex(5)
Another way is:
var arr = ["I", "Love", "Life"] let slice = arr[1..<2] println(slice) //[Love]