diff --git a/src/Chrono.hxx b/src/Chrono.hxx index 4c9fafe58..f20edaf59 100644 --- a/src/Chrono.hxx +++ b/src/Chrono.hxx @@ -73,6 +73,14 @@ public: constexpr double ToDoubleS() const { return double(count()) / 1000.; }; + + constexpr bool IsZero() const { + return count() == 0; + } + + constexpr bool IsPositive() const { + return count() > 0; + } }; #endif