The position of the first element in a nonempty collection.
Required.
SDK
- Xcode 9.3+
Framework
- Swift Standard Library
Declaration
Discussion
If the collection is empty, start
is equal to end
.
The position of the first element in a nonempty collection.
Required.
SDK
Framework
If the collection is empty, start
is equal to end
.
var end Index: Self .Index
The collection’s “past the end” position—that is, the position one greater than the last valid subscript argument.
Required.
var indices: Self .Indices
The indices that are valid for subscripting the collection, in ascending order.
Required. Default implementation provided.
func index(after: Self .Index) -> Self .Index
Returns the position immediately after the given index.
Required.
func form Index(inout Self .Index, offset By: Int)
Offsets the given index by the specified distance.
func form Index(inout Self .Index, offset By: Int, limited By: Self .Index) -> Bool
Offsets the given index by the specified distance, or so that it equals the given limiting index.