static func + (IndexPath, IndexPath) -> IndexPath
Combines the elements of two index paths into a single index path.
2つのインデックスパスの要素を単一のインデックスパスに結合します。
static func += (inout IndexPath, IndexPath)
Appends the elements of another index path to this index path.
別のインデックスパスの要素をこのインデックスパスに加えます。
static func < (IndexPath, IndexPath) -> Bool
Returns a Boolean that is true if the first index path is less than the second when comparing elements in depth-first traversal order.
深さ優先横断順で要素を比較する場合、最初のインデックスパスが2番目より少ないならばtrueであるブール値を返します。
static func == (IndexPath, IndexPath) -> Bool
Returns a Boolean that is true if all nodes of the first index path are equal to those of the second in order.
最初のインデックスパスのノードすべてが順番で2番目のそれらと等しいならばtrueを返すブール。