func isEqual (to: [Any]) -> Bool
Compares the receiving array to another array.
受け手側の配列を別の配列と比較します。
Availability 有効性
Technology
func firstObjectCommon(with otherArray: [Any]) -> Any?
otherArray
An array. 1つの配列。
Returns the first object contained in the receiving array that’s equal to an object in other
. If no such object is found, returns nil
.
受け手側の配列の中に含まれる最初のオブジェクトを返します、それは、other
の中のあるオブジェクトと等しいものです。そのようなオブジェクトが見つけられないならば、nil
を返します。
This method uses is
to check for object equality.
このメソッドは、is
を使ってオブジェクトの同等性を検査します。
func isEqual (to: [Any]) -> Bool
func contains(Any) -> Bool