static func != (IndexPath, IndexPath) -> Bool
Returns a Boolean value indicating whether two values are not equal.
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を返すブール。