文書   >   Swift   >   Swift 標準ライブラリ   >   Collections   >   Supporting Types   >   EnumeratedSequence   >   first(where:)
インスタンスメソッド
first(where:)
与えられた predicate (述語) を満たすシーケンスの最初の要素を返します。
宣言
func first(where predicate: ((offset: Int, element: Base.Element)) throws -> Bool) rethrows -> (offset: Int, element: Base.Element)?
パラメータ
predicate | シーケンスの要素をその引数として受け取り、要素が一致するかどうかを示すブール値を返すクロージャ。 |
戻り値
predicate (述語) を満たすシーケンスの最初の要素。predicate (述語) を満たす要素がない場合は nil。
議論
以下の例では、first(where:) メソッドを使用して、整数の配列内の最初の負の数を検索します。
let numbers = [3, 7, 4, -2, 9, -6, 10, 1]
if let firstNegative = numbers.first(where: { $0 < 0 }) {
print("The first negative number is \(firstNegative).")
}
// Prints "The first negative number is -2."
複雑さ:O(n)、ここで n はシーケンスの長さです。