static func == (IndexSet.RangeView, IndexSet.RangeView) -> Bool
Indicates whether two range views are the same.
2つの範囲ビューが同じかどうかを指し示します。
Availability 有効性
Technology
lhs
A value to compare. 比較する値。
rhs
Another value to compare. もう一方の比較する値。
Inequality is the inverse of equality. For any values a
and b
, a != b
implies that a == b
is false
.
不等性は、同等性の裏返しです。何らかのa
とb
に対して、a != b
はa == b
がfalse
であることを意味します。
This is the default implementation of the not-equal-to operator (!=
) for any type that conforms to Equatable
.
これは不等演算子(!=
)の、Equatable
に準拠するあらゆる型に対する初期状態の実装です。
static func == (IndexSet.RangeView, IndexSet.RangeView) -> Bool