文書   >   Swift   >  String   >   Substring   >   first(where:)
インスタンスメソッド
first(where:)
与えられた述語 (predicate) を満たすシーケンスの最初の要素を返します。
宣言
パラメータ
predicate | シーケンスの要素をその引数として取り、要素が一致したかどうかを示すブール値を返すクロージャ。 |
戻り値
prediucate (述語) を満たすシーケンスの最初の要素。prediucate を満たす要素がない場合は 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 はシーケンスの長さです。
トップへ(Swift 標準ライブラリ)
トップへ(Swift 標準ライブラリ)
トップへ(Swift 標準ライブラリ)
トップへ(Swift 標準ライブラリ)