This is not about me being lazy to write
auto t = time(nullptr);
instead of hypothetical
auto t = time();
I am mostly interested if this is possible, and if it is(AFAIK it is easily implementable since C++ supports function overloading) why it has not been done.
I know obvious answers like: use <chrono>
, nobody wrote proposal, but I wonder if there is a different reason.
My best guess is that nobody wanted to mess with C library functions.
P.S. I understand that some might want to close this question as too vague, but I feel that it is possible to give relatively objective answer to this question.