Tuple IFTI with implicit conversions

BCS ao at pathlink.com
Fri Oct 19 23:24:16 PDT 2007


Reply to Janice,

> What does IFTI stand for?
> (Even Google doesn't seem to know)

implicit function itemplate instantiatein

it's what lets you skip the template args sometimes.

int foo(T)(T t){...}

// full form
foo!(int)(5);

// with ITFI
foo(5);





More information about the Digitalmars-d mailing list