[EMCpp]Item-1 Understand Template Type Deduction
· β 6 min read
There are three sets of rules for type deduction in modern C++: one for function templates, one for auto
, and one for decltype
. Without a solid understanding of how deduction operates, effective programming in modern C++ is all but impossible.