C++ Versions
Writing down different features that came with every version
C++11
C++14
- decltype (C++)
make_unique
C++17
- Structured bindings (
auto [a,b] = p) if constexpr→ compile time branching
C++20
- Spaceship Operator <=> – three-way comparison.
Writing down different features that came with every version
C++11
C++14
make_uniqueC++17
auto [a,b] = p)if constexpr → compile time branchingC++20