The position of the first element in a nonempty collection.
Required.
SDK
- Xcode 9.3+
Framework
- Swift Standard Library
Declaration
var startIndex: Self.Index { get }
Discussion
If the collection is empty, start is equal to end.
The position of the first element in a nonempty collection.
Required.
SDK
Framework
var startIndex: Self.Index { get }
If the collection is empty, start is equal to end.
var end Index: Self .IndexThe collection’s “past the end” position—that is, the position one greater than the last valid subscript argument.
Required.
var indices: Self .IndicesThe indices that are valid for subscripting the collection, in ascending order.
Required. Default implementation provided.
func index(after: Self .Index) -> Self .IndexReturns 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) -> BoolOffsets the given index by the specified distance, or so that it equals the given limiting index.