var endIndex : Self.Index
The collection’s “past the end” position—that is, the position one greater than the last valid subscript argument.
コレクションの「終わりを過ぎた」位置—すなわち、最後の有効な添え字引数より1つ大きい位置。
var indices: Self.Indices
The indices that are valid for subscripting the collection, in ascending order.
コレクションの添え字に使うのに有効である、昇順でのインデックス。
func index(after: Self.Index) -> Self.Index
Returns the position immediately after the given index.
与えられたインデックスの直後の位置を返します。
func formIndex (inout Self.Index, offsetBy : Int)
Offsets the given index by the specified distance.
与えられたインデックスを指定された間隔で補います。
func formIndex (inout Self.Index, offsetBy : Int, limitedBy : Self.Index) -> Bool
Offsets the given index by the specified distance, or so that it equals the given limiting index.
与えられたインデックスをこの指定された隔たりで補います、またはそれでそれは与えられた限界インデックスと等しくなります。