The element to look for in the option set. オプションセットにおいて捜される要素。
Instance Method
インスタンスメソッド
contains(_:)
Returns a Boolean value that indicates whether a given element is a member of the option set.
与えられた要素がオプションセットのメンバであるかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func contains(_ member: Self) -> Bool
Available when
Self
is
Element
.
Self
が
Element
である時に利用可能です。
Parameters パラメータ
member
Return Value 戻り値
true
if the option set contains member
; otherwise, false
.
オプションセットがmember
を含むならば、true
;そうでなければfalse
。
Discussion 解説
This example uses the contains(_:)
method to check whether next-day shipping is in the available
instance.
この例は、contains(_:)
メソッドを使って翌日出荷がavailable
インスタンスの中のあるかどうか確認します。