Reason #148 why I hate Swift:

This:

for i in sizeToCopy..<length

is apparently preferable to:

for (int i = sizeToCopy; i < length; i++)