static func == (Date, Date) -> Bool
Returns a Boolean value that indicates whether two dates represent the same point in time.
あるブール値を返します、それは2つの日付が同じ時点を表すかどうかを指し示します。
static func > (Date, Date) -> Bool
Returns a Boolean value that indicates whether the value of the first argument is greater than that of the second argument.
あるブール値を返します、それは最初の引数の値が2番目の引数のそれより大きいかどうかを指し示します。
static func >= (Date, Date) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより大きいまたは等しいかどうかを指し示すブール値を返します。
static func < (Date, Date) -> Bool
Returns a Boolean value that indicates whether the value of the first argument is less than that of the second argument.
あるブール値を返します、それは最初の引数の値が2番目の引数のそれより少ないかどうかを指し示します。
static func <= (Date, Date) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。
func compare(Date) -> ComparisonResult
Compares another date to this one.
別の日付値をこのものと比較します。
func distance(to: Date) -> TimeInterval
Returns the distance from this date to another date, specified as a time interval.
この日付から別の日付までの隔たりを返します、ある時間間隔として指定されます。