- array[meta header]
- function template[meta id-type]
- std[meta namespace]
- cpp20[meta cpp]
namespace std {
template<class T, size_t N>
constexpr array<remove_cv_t<T>, N> to_array(T (&a)[N]); // (1)
template<class T, size_t N>
constexpr array<remove_cv_t<T>, N> to_array(T (&&a)[N]); // (2)
}
- remove_cv_t[link /reference/type_traits/remove_cv.md]
組み込み 1 次元配列から、std::array
を作成する。
- (1) :
std::is_array_v<T>
がfalse
かつis_constructible_v<T, T&>
がtrue
であること。 - (2) :
std::is_array_v<T>
がfalse
かつis_move_constructible_v<T>
がtrue
であること。
- (1) :
T
はCpp17CopyConstructible
要件を満たしていること。 - (2) :
T
はCpp17MoveConstructible
要件を満たしていること。
- (1) :
{{ a[0], ..., a[N - 1] }}
- (2) :
{{ std::move(a[0]), ..., std::move(a[N - 1]) }}
#include <iostream>
#include <array>
#include <algorithm>
#include <iterator>
int main()
{
int a[] = { 3, 1, 4, 1, 5 };
std::array<int, 5> b = std::to_array(a); // 組み込みの配列の要素をコピーし、 std::array を作成
std::copy(b.begin(), b.end(), std::ostream_iterator<int>(std::cout, ", "));
int c[3][2] = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
// auto d = std::to_array(c); // 多次元配列はサポートされない
}
- to_array[color ff0000]
3, 1, 4, 1, 5,
- C++20
- Clang: 10.0.0 現在未実装 [mark verified]
- GCC: 10.0.0 [mark verified]
- Visual C++: ??