The indices that are valid for subscripting the collection, in ascending order.
SDK
- Xcode 9.3+
Framework
- Swift Standard Library
Declaration
Discussion
A collection’s indices
property can hold a strong reference to the collection itself, causing the collection to be non-uniquely referenced. If you mutate the collection while iterating over its indices, a strong reference can cause an unexpected copy of the collection. To avoid the unexpected copy, use the index(after:)
method starting with start
to produce indices instead.