mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 01:04:38 +03:00
AK: Add Time::is_negative() to detect negative time values
This commit is contained in:
parent
3cbc2364a8
commit
a2a5cb0f24
Notes:
sideshowbarker
2024-07-18 05:41:09 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/a2a5cb0f241 Pull-request: https://github.com/SerenityOS/serenity/pull/9431
@ -164,6 +164,7 @@ public:
|
||||
[[nodiscard]] timeval to_timeval() const;
|
||||
|
||||
[[nodiscard]] bool is_zero() const { return !m_seconds && !m_nanoseconds; }
|
||||
[[nodiscard]] bool is_negative() const { return m_seconds < 0; }
|
||||
|
||||
bool operator==(const Time& other) const { return this->m_seconds == other.m_seconds && this->m_nanoseconds == other.m_nanoseconds; }
|
||||
bool operator!=(const Time& other) const { return !(*this == other); }
|
||||
|
@ -261,3 +261,16 @@ TEST_CASE(truncation)
|
||||
EXPECT_EQ(TIME(9223372036854, 775'807'000).to_truncated_microseconds(), 0x7fff'ffff'ffff'ffff);
|
||||
EXPECT_EQ(TIME(9223372036854, 775'808'000).to_truncated_microseconds(), 0x7fff'ffff'ffff'ffff);
|
||||
}
|
||||
|
||||
TEST_CASE(is_negative)
|
||||
{
|
||||
auto small = Time::from_nanoseconds(10);
|
||||
auto large = Time::from_nanoseconds(15);
|
||||
auto result = small - large;
|
||||
EXPECT_EQ(result.to_nanoseconds(), -5);
|
||||
EXPECT(result.is_negative());
|
||||
|
||||
result = large - small;
|
||||
EXPECT_EQ(result.to_nanoseconds(), 5);
|
||||
EXPECT(!result.is_negative());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user