Constructors. Constructs an array. @li **(1)**, **(2)** the array is empty and has zero capacity. @li **(3)** the array is filled with `count` copies of `jv`. @li **(4)** the array is filled with `count` null values. @li **(5)** the array is filled with values in the range `[first, last)`, preserving order. @li **(6)** the array is
| 240 | @{ |
| 241 | */ |
| 242 | array() noexcept |
| 243 | : t_(&empty_) |
| 244 | { |
| 245 | } |
| 246 | |
| 247 | /** Overload |
| 248 | @param sp A pointer to the @ref boost::container::pmr::memory_resource |