Operator
演算子
<(_:
<(_:_:)
Returns a Boolean value that indicates whether the value of the first argument is less than that of the second argument.
あるブール値を返します、それは最初の引数の値が2番目の引数のそれより少ないかどうかを指し示します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Dates 日付を比較する
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 two dates don’t 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 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.
この日付から別の日付までの隔たりを返します、ある時間間隔として指定されます。