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

isEqual(to:)

Returns a Boolean value indicating whether this data object is the same as another. このデータがもう1つものと同じかどうかを示すブール値を返します。

Declaration 宣言

func isEqual(to other: Data) -> Bool

Parameters パラメータ

otherData

The data object with which to compare the receiver. それとレシーバを比較することになるデータオブジェクト。

Return Value 戻り値

true if the contents of otherData are equal to the contents of the receiver, otherwise false. trueotherDataの内容がレシーバの内容と等しいならば、そうでなければfalse

Discussion 議論

Two data objects are equal if they hold the same number of bytes, and if the bytes at the same position in the objects are the same. 2つのデータオブジェクトは、それらが同じ数のバイトを保持するならば、そしてオブジェクトの中の同じ位置でのバイトが同じであるならば等しいです。

See Also 参照

Testing Data データをテストする