Elevator pitch:
(2.5h - 14min + 9300ms).total_seconds()
# 8169.3
from datetime import datetime as dt
start = dt.now()
end = dt.now()
(end-start) < 5s
# True
chrono::duration:
In C++ 14 the std::chrono::duration was introduced which corresponds
somewhat to
datetime.timedelta.
C++ 14 introduced
What about
2.5*h - 14*min + 9300*ms * 2
where:
h = timedelta(hours=1)
min = timedelta (minutes=1)
ms = timedelta (milliseconds=1)
By the way "min" isn't a keyword, it's a standard function so it can be
used as a variable name.
However why be limited to time units ? One would want in certain
ap