Operator
演算子
==(_:
==(_:_:)
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を返すブール。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Adding Nodes ノードを追加する
static func != (IndexPath, IndexPath) -> Bool
Returns a Boolean value indicating whether two values are not equal.
2つの値が等しくないかどうかを指し示すブール値を返します。
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であるブール値を返します。