Initializer
init(arrayLiteral:)
Creates a set containing the elements of the given array literal.
与えられた配列リテラルの要素を含んでいる集合を作成します。
Declaration
宣言
init(arrayLiteral: Self.Element...)
Available when ArrayLiteralElement
is Self.Element
.
ArrayLiteralElement
がSelf.Element
である時に利用可能です。
Parameters
パラメータ
arrayLiteral
A list of elements of the new set.
新しい集合の要素のリスト。
Discussion
議論
Do not call this initializer directly. It is used by the compiler when you use an array literal. Instead, create a new set using an array literal as its value by enclosing a comma-separated list of values in square brackets. You can use an array literal anywhere a set is expected by the type context.
このイニシャライザを直接に呼ばないでください。それは、あなたが配列リテラルを使う時にコンパイラによって使われます。代わりに、新しい集合を配列リテラルをそれの値として、コンマ区切りの値のリストを角カッコで囲むことによって、作成してください。あなたは、型コンテキストによって集合が予期される何処ででも配列リテラルを使うことができます。
Here, a set of strings is created from an array literal holding only strings:
ここでは、文字列の集合が文字列のみを保持する配列リテラルから作成されます:
let ingredients: Set = ["cocoa beans", "sugar", "cocoa butter", "salt"]
if ingredients.isSuperset(of: ["sugar", "salt"]) {
print("Whatever it is, it's bound to be delicious!")
}
See Also
参照
Creating Date Picker Components
init()
Creates an empty option set.
空のオプションセットを作成します。
Available when RawValue
conforms to FixedWidthInteger
.
RawValue
がFixedWidthInteger
に準拠する時に利用可能です。
init<S>(S)
Creates a new set from a finite sequence of items.
いくつかの要素からなる有限のシーケンスから集合を作成します。
typealias RawValue
The raw type that can be used to represent all values of the conforming type.
準拠している型の全ての値を表すために使われることができる生の型。