The element to find in the sequence. このシーケンスにおいて見つける要素。
Instance Method
インスタンスメソッド
contains(_:)
Returns a Boolean value indicating whether the sequence contains the given element.
指定された要素をシーケンスが含むかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Available when
Base
.
Element
.
Element
conforms to Equatable
.
Base
.
Element
.
Element
がEquatable
に準拠する時に利用可能です。
Parameters パラメータ
element
Return Value 戻り値
true
if the element was found in the sequence; otherwise, false
.
要素がシーケンスにおいて見つけられなかったならば、true
;そうでなければ、false
。
Discussion 解説
This example checks to see whether a favorite actor is in an array storing a movie’s cast. この例は、映画出演者を格納する配列の中にお気に入りの俳優がいるかどうか確認するために調べます。
Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。