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

isEqual(to:)

Compares the receiving array to another array. 受け手側の配列を別の配列と比較します。

Declaration 宣言

func isEqual(to otherArray: [Any]) -> Bool

Parameters パラメータ

otherArray

An array. 1つの配列。

Return Value 戻り値

true if the contents of otherArray are equal to the contents of the receiving array, otherwise false. trueの内容が受け手側の配列の内容と同等ならばotherArray、そうでなければfalse

Discussion 議論

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 isEqual(_:) test. 2つの配列は、それらがめいめい同じ数のオブジェクトを保持して、めいめいの配列の中のある与えられたインデックスでのオブジェクトがisEqual(_:)テストを満足させるならば、等しいです。

See Also 参照

Comparing Arrays 配列を比較する