Difference between revisions of "Useful D snippets"
(formatting) |
|||
Line 11: | Line 11: | ||
} | } | ||
</source> | </source> | ||
+ | |||
+ | [[Category:CommonIdiom]] |
Latest revision as of 19:50, 8 September 2015
Converting a time_t unix timestamp into std.datetime types
http://dlang.org/intro-to-datetime.html
import std.datetime;
import core.stdc.time;
void main() {
time_t unixTime = core.stdc.time.time(null);
auto stdTime = unixTimeToStdTime(unixTime);
auto st = SysTime(stdTime);
}