On 06/13/15 01:25, Yuxuan Shui via Digitalmars-d wrote:
> When there are multiple overloaded functions, whose return type will I get 
> when I use ReturnType? Is there a way I could choose a specific function by 
> its parameter types?

   alias ReturnType(alias F, A...) = typeof(F(A.init));


artur

Reply via email to