1 /** 2 Copyright: Copyright (c) 2018, Joakim Brännström. All rights reserved. 3 License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) 4 Author: Joakim Brännström (joakim.brannstrom@gmx.com) 5 6 The license of this module is Boost because the code is derived from a pull 7 request for druntime. 8 */ 9 10 module dextool.from; 11 12 /** Local imports everywhere. 13 14 Example: 15 --- 16 void fun(from!"std.string".Path p) 17 --- 18 */ 19 template from(string moduleName) { 20 mixin("import from = " ~ moduleName ~ ";"); 21 }