文書   >   Swift 標準ライブラリ   >   Collections   >   Supporting Types   >   AnyRandomAccessCollection   >   first(where:)
インスタンスメソッド
first(where:)
指定された述語を満たすシーケンスの最初の要素を返します。
宣言
func first(where predicate: (Element) throws -> Bool) rethrows -> 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."