STL: Sequential Containers
In this lesson, we will discuss some sequential containers and focus on std::array. It has unique characteristics among all sequential containers of the Standard Template Library.
We'll cover the following...
We'll cover the following...
The sequential containers have much in common, but each container has a special domain. Before we dive into the details of std::array
, we provide an overview of all five sequential containers of the std namespace
.
STL: std::array
std::array
combines the best of two worlds. ...