No overview available.
SDKs
- iOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Framework
- Dispatch
Declaration
var startIndex: Dispatch Data.Index { get }
No overview available.
SDKs
Framework
var startIndex: Dispatch Data.Index { get }
func first Index(of: UInt8) -> Int?
Returns the first index where the specified value appears in the collection.
func first Index(where: (UInt8) -> Bool) -> Int?
Returns the first index in which an element of the collection satisfies the given predicate.
func last Index(of: UInt8) -> Int?
Returns the last index where the specified value appears in the collection.
func last Index(where: (UInt8) -> Bool) -> Int?
Returns the index of the last element in the collection that matches the given predicate.
func index(Int, offset By: Int) -> Int
Returns an index that is the specified distance from the given index.
func index(Int, offset By: Int, limited By: Int) -> Int?
Returns an index that is the specified distance from the given index, unless that distance is beyond a given limiting index.
var indices: Default Indices<Dispatch Data>
The indices that are valid for subscripting the collection, in ascending order.