The array’s “past the end” position—that is, the position one greater than the last valid subscript argument.
SDK
- Xcode 6.3+
Framework
- Swift Standard Library
Declaration
Discussion
When you need a range that includes the last element of an array, use the half-open range operator (..<
) with end
. The ..<
operator creates a range that doesn’t include the upper bound, so it’s always safe to use with end
. For example:
If the array is empty, end
is equal to start
.