Instance Method
インスタンスメソッド
isEqual(to:)
Returns a Boolean value that indicates whether a given object is a date that is exactly equal the receiver.
与えられたオブジェクトがレシーバと正確に等しい日付であるかどうかを指し示すブール値を返します。
Declaration
宣言
func isEqual(to otherDate: Date
) -> Bool
Parameters
パラメータ
anotherDate
The date to compare with the receiver.
レシーバと比較する日付。
Return Value
戻り値
true
if the anotherDate
is an NSDate
object and is exactly equal to the receiver, otherwise false
.
true
、もしanotherDate
がNSDate
オブジェクトでありそして正確にレシーバと等しいならば、そうでなければfalse
。
Discussion
議論
This method detects sub-second differences between dates. If you want to compare dates with a less fine granularity, use timeIntervalSince(_:)
to compare the two dates.
このメソッドは、日付間の秒未満の差異を検知します。あなたが一層小さい精細粒度で日付を比較したいならば、timeIntervalSince(_:)
を使って2つの日付を比較してください。
See Also
参照
Related Documentation
関連文書
func isEqual(Any?) -> Bool
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。