Explicit qualification of template functions
template<class T, class U> T make(U u); Thing t = make<Thing>(1.23);
Here, the return type of make is not deducible from the supplied arguments
but can instead be supplied explicitly using the
template<class T, class U> T make(U u); Thing t = make<Thing>(1.23);
Here, the return type of make is not deducible from the supplied arguments
but can instead be supplied explicitly using the