A value to compare. 比較する値。
Operator
演算子
==(_:
==(_:_:)
Returns a Boolean value that indicates whether two codable configurations are equal.
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func == (a: CodableConfiguration
<T, ConfigurationProvider >, b: CodableConfiguration
<T, ConfigurationProvider >) -> Bool
Available when
T
conforms to Equatable
.
T
がEquatable
に準拠する時に利用可能です。
Parameters パラメータ
a
b
Another value to compare. もう一方の比較する値。
Return Value 戻り値
true
if the values are equal; otherwise, false
.
true
、もし値が等しいならば;そうでなければ、false
。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Configuration Instances 構成設定インスタンスを比較する
static func != (CodableConfiguration<T, ConfigurationProvider>, CodableConfiguration<T, ConfigurationProvider>) -> Bool
Returns a Boolean value that indicates whether two codable configurations are unequal.
Available when
T
conforms to Equatable
.
T
がEquatable
に準拠する時に利用可能です。