std::array<int,3> ar = {1,2,3};


C++26 Committee Draft is open for comments

ISO/IEC JTC 1/SC 22 N6035
→ wg21.link/n5014
Contracts are new Contract Assertions

Summer break, we restart begin of September
Season 10 started ๐

9 years ago (Aug 18, 2016)
⇒ like, share, follow, subscribe
29 September (OBS! Monday)
End of October / Begin of November
Submit your ideas and suggestions

Tell us what you want to hear or want to do


std::array<int,3> ar = {1,2,3};
std::array<int,4> ar = {1,2,3,4};
A change in N elements requires 2 changes.
Not just the value list, but also the type.
std::array<int,3>
std::array<int,4>
auto ar = std::________({1,2,3,4});
Which std function can I use to get the right sized array by just providing the elements?
auto ar = std::to_array({1,2,3,4});
since C++20
Dmytro: German Strings
A Case For Yet Another String Type
๐น ๐ Mingle ๐ ๐ป
Harald: Template Argument Packs
Type and Value Lists
Why and How
Vรคl mรถtt!