func firstObjectCommon (with: [Any]) -> Any?
Returns the first object contained in the receiving array that’s equal to an object in another given array.
受け手側の配列の中に含まれる最初のオブジェクトを返します、それは、別の与えられた配列の中のあるオブジェクトと同等なものです。
Availability 有効性
Technology
func isEqual(to otherArray: [Any]) -> Bool
otherArray
An array. 1つの配列。
true
if the contents of other
are equal to the contents of the receiving array, otherwise false
.
true
の内容が受け手側の配列の内容と同等ならばother
、そうでなければfalse
。
Two arrays have equal contents if they each hold the same number of objects and objects at a given index in each array satisfy the is
test.
2つの配列は、それらがめいめい同じ数のオブジェクトを保持して、めいめいの配列の中のある与えられたインデックスでのオブジェクトがis
テストを満足させるならば、等しいです。
func firstObjectCommon (with: [Any]) -> Any?