Playing arround with mixin - alias?
Martin Tschierschke via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Fri Apr 21 02:31:52 PDT 2017
Is it possible to define an alias for something like
mixin(import("local_function_file.d"));
to write only
use_local_function;
which will be translated to:
mixin(import("local_function_file.d"));
(this additionally needs the file local_function_file.d in
source/ +
-J./source as parameter for dmd aka. dflags "-J./source" in
dub.sdl)
Regards mt.
More information about the Digitalmars-d-learn
mailing list