The C++17 standard was one of the major standards in the history of modern C++. One of the new library features in C++17 was std::apply which is designed to be used with std::tuple class template. In this post, we explain how to use apply with std::tuple in C++ examples.
What is std::tuple in C++?
Thetuple(std::tuple) is a class templatea fixed-size collection of…
What Are The Deprecated C++14 Features In C++17?
March 14, 2024
C++ programming language has a lot of useful new classes, methods, templates, and keywords coming with the new C++ standards. Mostly they are new or enhanced versions of previous ones from the older standard. Because of new modern technologies and software requirements, some…
What Are The C++14 Features Removed From C++17?
March 12, 2024
Modern C++ has a lot of useful new classes, methods, templates, and keywords introduced with the new C++ standards. Mostly they are new or enhanced versions of previous ones. Because of new modern technologies and software requirements, some of these features are being…