🅰Б

Size: a a a
🅰Б
🅰Б
SS
RD
SS
RD
SS
EE
🅰Б
EE
🅰Б
🅰Б
extension Date {
static func - (lhs: Date, rhs: Date) -> TimeInterval {
return lhs.timeIntervalSinceReferenceDate - rhs.timeIntervalSinceReferenceDate
}
static func == (lhs: Date, rhs: Date) -> Bool {
return lhs.timeIntervalSinceReferenceDate == rhs.timeIntervalSinceReferenceDate
}
static func > (lhs: Date, rhs: Date) -> Bool {
return lhs.timeIntervalSinceReferenceDate > rhs.timeIntervalSinceReferenceDate
}
static func < (lhs: Date, rhs: Date) -> Bool {
return lhs.timeIntervalSinceReferenceDate < rhs.timeIntervalSinceReferenceDate
}
static func >= (lhs: Date, rhs: Date) -> Bool {
return lhs.timeIntervalSinceReferenceDate >= rhs.timeIntervalSinceReferenceDate
}
static func <= (lhs: Date, rhs: Date) -> Bool {
return lhs.timeIntervalSinceReferenceDate <= rhs.timeIntervalSinceReferenceDate
}
}
AS
AS
AS
i
AS
AS
i