A closure that takes an element of the sequence as its argument and returns a Boolean value that indicates whether the passed element represents a match. あるクロージャ、それはこのシーケンスの1つの要素をそれの引数として取り、渡された要素がある合致を表すものであるかどうかを指し示すブール値を返します。
contains(where:)
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
predicate
Return Value 戻り値
true
if the sequence contains an element that satisfies predicate
; otherwise, false
.
このシーケンスがpredicate
を満たす要素を含むならばtrue
;そうでなければ、false
。
Discussion 議論
You can use the predicate to check for an element of a type that doesn’t conform to the Equatable
protocol, such as the HTTPResponse
enumeration in this example.
あなたは述部を使って、Equatable
プロトコルに準拠しない型、例えばこの例でのHTTPResponse
列挙などの要素に対して調べることができます。
Alternatively, a predicate can be satisfied by a range of Equatable
elements or a general condition. This example shows how you can check an array for an expense greater than $100.
あるいは、述部は、Equatable
要素のある範囲またはある一般的条件によって満たされることができます。この例は、どのようにあなたが$100より大きい出費についてある配列を調べることができるかを示します。
Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。