Removes the elements of the set that are also in the given set and adds the members of the given set that are not already in the set.
与えられた集合の中にもあるこの集合の要素を削除します、そして与えられた集合のメンバでこの集合の中にはまだないものを加えます。
In the following example, the elements of the employees set that are also members of neighbors are removed from employees, while the elements of neighbors that are not members of employees are added to employees. In particular, the names "Bethany" and "Eric" are removed from employees while the name "Forlani" is added.
以下の例において、employees集合の要素でまたneighborsのメンバであるものはemployeesから削除されます、一方でneighborsの要素でemployeesの要素でないものはemployeesに加えられます。個別的には、名前"Bethany"と"Eric"はemployeesから削除される一方、名前"Forlani"は加えられます。
Replaces this set with a new set containing all elements contained in either this set or the given set, but not in both.
このセットを、このセットか与えられたセットのどちらかの中に、しかし両方ではなく、含まれるすべての要素を含んでいる新しいセットで置き換えます。
Available when RawValue conforms to FixedWidthInteger.RawValueがFixedWidthIntegerに準拠する時に利用可能です。
Returns a new set with the elements that are either in this set or in the given set, but not in both.
この集合の中か与えられた集合の中かどちらかの、しかし両方の中にではない要素を持つ新しい集合を返します。