Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cv qualifier を保持するために c++14 機能 decltype(auto) と auto&& を使用する利点はありますか?
auto v = const_return_func() //strip the constness auto&& v = const_return_func() decltype(auto) = const_return_func()