static func == (Date.RelativeFormatStyle.Presentation, Date.RelativeFormatStyle.Presentation) -> Bool
Returns a Boolean value that indicates whether two values are equal.
あるブール値を返します、それは2つの値が等しいかどうかを指し示します。
Availability 有効性
Technology
static func != (lhs: Date
.RelativeFormatStyle
.Presentation
, rhs: Date
.RelativeFormatStyle
.Presentation
) -> Bool
lhs
A value to compare. 比較する値。
rhs
Another value to compare. もう一方の比較する値。
A Boolean value that indicates whether two values are not equal.
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 == (Date.RelativeFormatStyle.Presentation, Date.RelativeFormatStyle.Presentation) -> Bool