Instance Method
インスタンスメソッド
laterDate(_:)
Returns the later of the receiver and another given date.
レシーバと別の与えられた日付のより後のものを返します。
Declaration
宣言
func laterDate(_ anotherDate: Date
) -> Date
Parameters
パラメータ
anotherDate
The date with which to compare the receiver.
レシーバと比較する日付。
Return Value
戻り値
The later of the receiver and anotherDate
, determined using timeIntervalSince(_:)
. If the receiver and anotherDate
represent the same date, returns the receiver.
レシーバとanotherDate
のより後のもの、timeIntervalSince(_:)
を使って決定されます。レシーバとanotherDate
が同じ日付を表すならば、レシーバが返されます。
See Also
参照
Comparing Dates
日付を比較する
func isEqual(to: Date) -> Bool
Returns a Boolean value that indicates whether a given object is a date that is exactly equal the receiver.
与えられたオブジェクトがレシーバと正確に等しい日付であるかどうかを指し示すブール値を返します。
Related Documentation
関連文書
func isEqual(Any?) -> Bool
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。