Instance Method インスタンスメソッド

firstObjectCommon(with:)

Returns the first object contained in the receiving array that’s equal to an object in another given array. 受け手側の配列の中に含まれる最初のオブジェクトを返します、それは、別の与えられた配列の中のあるオブジェクトと同等なものです。

Declaration 宣言

func firstObjectCommon(with otherArray: [Any]) -> Any?

Parameters パラメータ

otherArray

An array. 1つの配列。

Return Value 戻り値

Returns the first object contained in the receiving array that’s equal to an object in otherArray. If no such object is found, returns nil. 受け手側の配列の中に含まれる最初のオブジェクトを返します、それは、otherArrayの中のあるオブジェクトと等しいものです。そのようなオブジェクトが見つけられないならば、nilを返します。

Discussion 議論

This method uses isEqual(_:) to check for object equality. このメソッドは、isEqual(_:)を使ってオブジェクトの同等性を検査します。

See Also 参照

Comparing Arrays 配列を比較する

Related Documentation 関連文書