std.log version 2

Andrej Mitrovic andrej.mitrovich at gmail.com
Sat Jun 4 10:47:06 PDT 2011


The above example, this code will instantiate the template only once:
    ttt!"hello";
    ttt!"hello";

The second call just refers to the already instantiated template.
Using alias allows you to refer to an instantiation without having to
specify the same arguments again.


More information about the Digitalmars-d mailing list