Discussion 議論
When you need a range that includes the last element of a collection, 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:
例えば:
let numbers = [10, 20, 30, 40, 50]
if let index = numbers.firstIndex(of: 30) {
print(numbers[index ..< numbers.endIndex])
}
// Prints "[30, 40, 50]"
If the collection is empty, end
is equal to start
.