Руководства по выводу типов для std::array
Определено в заголовке <array> | ||
|---|---|---|
template< class T, class... U > array( T, U... ) -> array<T, 1 + sizeof...(U)>; | (с C++17) |
Предоставляется одно руководство по выводу типов для std::array для обеспечения эквивалента std::experimental::make_array для создания std::array из переменного параметризованного набора.
Программа некорректна, если (std::is_same_v<T, U> && ...) не верно. Обратите внимание, что (std::is_same_v<T, U> && ...) верно, когда sizeof...(U) равно нулю.
Пример
#include <array>
#include <cassert>
int main()
{
int const x = 10;
std::array a{1, 2, 3, 5, x}; // OK, creates std::array<int, 5>
assert(a.back() == x);
// std::array b{1, 2u}; // Error, all arguments must have the same type
// std::array<short> c{3, 2, 1}; // Error, wrong number of template args
std::array c(std::to_array<short>({3, 2, 1})); // C++20 alternative,
// creates std::array<short, 3>
}
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/array/deduction_guides