Skip to content

Instantly share code, notes, and snippets.

@toohuman
Last active March 1, 2018 11:10
Show Gist options
  • Save toohuman/867b4fcf8482ae1c6ae11f51780a5652 to your computer and use it in GitHub Desktop.
Save toohuman/867b4fcf8482ae1c6ae11f51780a5652 to your computer and use it in GitHub Desktop.
Import idiom for D.
template from(string moduleName)
{
mixin("import from = " ~ moduleName ~ ";");
}
...
void fun(from!"std.datetime".SysTime time)
{
import std.stdio;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment