Return Value 戻り値
A new option set made up of the elements contained in this set, in other
, or in both.
この集合の中に、other
の中に、または両方の中に含まれる要素から作り上げられるオプションセット。
Availability 有効性
Technology
func union(_ other: Self) -> Self
A new option set made up of the elements contained in this set, in other
, or in both.
この集合の中に、other
の中に、または両方の中に含まれる要素から作り上げられるオプションセット。
other
An option set. あるオプションセット。
This example uses the union(_:)
method to add two more shipping options to the default set.
この例は、union(_:)
メソッドを使って2つのさらなる出荷オプションを省略時のセットに加えます。
let defaultShipping = ShippingOptions.standard
let memberShipping = defaultShipping.union([.secondDay, .priority])
print(memberShipping.contains(.priority))
// Prints "true"