typealias IndexPath.Index
A type that points to a particular node in an index path, similar to an array index.
ある特定ノードをインデックスパスにおいて指すものの型、配列インデックスと似ています。
var startIndex : IndexPath.Index
The index of the first node in the index path.
インデックスパスの最初のノードの値。
var endIndex : IndexPath.Index
One past the index of the last node in the index path.
インデックスパスの最後のノードのインデックスを1つ過ぎます。
func index(after: IndexPath.Index) -> IndexPath.Index
Returns the index that follows the given index.
与えられたインデックスに続くインデックスを返します。
func index(before: IndexPath.Index) -> IndexPath.Index
Returns the index that precedes the given index.
与えられたインデックスに先行するインデックスを返します。