文書   >   Foundation   >   Archives and Serialization   >   JSONEncoder   >   JSONEncoder.OutputFormatting   >   union(_:)
インスタンスメソッド
union(_:)
このセット、指定されたセット、またはその両方に含まれる要素の新しいオプションセットを返します。
宣言
パラメータ
other | オプションセット。 |
戻り値
このセット、other のセット、またはその両方に含まれる要素で構成される新しいオプションセット。
議論
この例では、union(_:) メソッドを使用して、2 つの出荷オプションをデフォルトセットに追加しています。
let defaultShipping = ShippingOptions.standard
let memberShipping = defaultShipping.union([.secondDay, .priority])
print(memberShipping.contains(.priority))
// Prints "true"