Do you use those?
Modern C++ Features – decltype and std::declval
by Arne Mertz
From the article:
decltype
andstd::declval
are two features that go hand in hand and are most useful in template metaprogramming and in conjunction with the use of type deduction viaauto
, e.g. in generic lambdas...
Add a Comment
Comments are closed.