On 08/03/2013 01:38 PM, bearophile wrote:

> enum mysize(T) = T.sizeof;

That works...

> template Pair(T) = Tuple(T, T);

Instead, the following works (alias and !):

alias Pair(T) = Tuple!(T, T);

Is my change right?

Ali

Reply via email to