An element to look for in the set. 集合において捜される要素。
Instance Method
インスタンスメソッド
contains(_:)
Returns a Boolean value that indicates whether the given element exists in the set.
与えられた要素が集合の中の存在するかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func contains(_ member: Element) -> Bool
Parameters パラメータ
member
Return Value 戻り値
true
if member
exists in the set; otherwise, false
.
member
がこの集合に含まれるならばtrue
;そうでなければ、false
。
Discussion 解説
This example uses the contains(_:)
method to test whether an integer is a member of a set of prime numbers.
この例は、contains(_:)
メソッドを使ってある整数がある一揃いの素数のメンバであるかどうかをテストします。
Complexity: O(1) 計算量:O(1)