Operator
演算子
<(_:
<(_:_:)
Indicates whether one date interval is strictly less than another.
一方の日付間隔が他方より厳密に少ないかどうかを指し示します。
Availability 有効性
- iOS 10.0+
- iPadOS 10.0+
- macOS 10.12+
- Mac Catalyst 13.0+
- tvOS 10.0+
- watchOS 3.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func < (lhs: DateInterval
, rhs: DateInterval
) -> Bool
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Comparing Date Intervals 日付間隔を比較する
static func != (DateInterval, DateInterval) -> Bool
Returns a Boolean value indicating whether two values are not equal.
2つの値が等しくないかどうかを指し示すブール値を返します。
static func <= (DateInterval, DateInterval) -> 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番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。
static func == (DateInterval, DateInterval) -> Bool
Indicates whether two date intervals are the same.
2つの日付間隔が同じかどうかを指し示します。
static func > (DateInterval, DateInterval) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。
static func >= (DateInterval, DateInterval) -> 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番目の引数のそれより大きいまたは等しいかどうかを指し示すブール値を返します。