distance(from:to:)
Returns the distance between two indices.
Declaration
func distance(from start: String.Index, to end: String.Index) -> IntParameters
- start:
A valid index of the collection.
- end:
Another valid index of the collection. If
endis equal tostart, the result is zero.
Return Value
The distance between start and end.