Difference between revisions of "Useful D snippets"
(Created page with " 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 =...") |
(formatting) |
||
Line 1: | Line 1: | ||
− | + | ==Converting a time_t unix timestamp into std.datetime types== | |
http://dlang.org/intro-to-datetime.html | http://dlang.org/intro-to-datetime.html | ||
+ | <source lang="D"> | ||
import std.datetime; | import std.datetime; | ||
import core.stdc.time; | import core.stdc.time; | ||
void main() { | void main() { | ||
− | + | time_t unixTime = core.stdc.time.time(null); | |
− | + | auto stdTime = unixTimeToStdTime(unixTime); | |
− | + | auto st = SysTime(stdTime); | |
} | } | ||
+ | </source> |
Revision as of 10:11, 16 May 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);
}