文書   >   Foundation   >   Collections   >   Set   >   union(_:)


汎用インスタンスメソッド


union(_:)


この Set と与えられたシーケンスの両方の要素を持つ新しい Set を返します。





宣言


func union<S>(_ other: S) -> Set<Element> where Element == S.Element, S : Sequence


パラメータ


other要素のシーケンス。other は有限でなければなりません。


戻り値


このセットと other の独特な要素を持つ新しい Set。


議論


以下の例では、attendeesAndVisitors Set は、attendees Set の要素と visitors の配列で構成されています。



let attendees: Set = ["Alicia", "Bethany", "Diana"]
let visitors = ["Marcia", "Nathaniel"]
let attendeesAndVisitors = attendees.union(visitors)
print(attendeesAndVisitors)
// Prints "["Diana", "Nathaniel", "Bethany", "Alicia", "Marcia"]"


Set に other の要素にも含まれている 1 つ以上の要素がすでに含まれている場合、既存のメンバーは保持されます。other に同等の要素のインスタンスが複数含まれている場合は、最初のインスタンスだけが保持されます。


let initialIndices = Set(0..<5)
let expandedIndices = initialIndices.union([2, 3, 6, 6, 7, 7])
print(expandedIndices)
// Prints "[2, 4, 6, 7, 0, 1, 3]"


関連





プロトコルから


以下も見よ





Set の組み合わせ

















トップへ












トップへ












トップへ












トップへ












トップへ
目次
Xcode の新機能

  • 言語:Swift
  • SDK
  • Xcode 10.2+
  • Framework
  • Swift 標準ライブラリ
  • 宣言
  • パラメータ
  • 戻り値
  • 議論
  • 関連
  • 以下も見よ












  • トップへ












    トップへ












    トップへ












    トップへ












    トップへ