...

/

constexpr Containers and Algorithms

constexpr Containers and Algorithms

Get an overview of a constexpr container called 'std::vector'.

C++20 has many improvements regarding containers of the Standard Template Library. First of all, std::vector and std::string have constexpr constructors and so can be used at compile time. All containers support ...