C++ 标准委员会于11月11日召开了C++26的第二次会议。本次会议新接收了4个核心语言提案、19个标准库提案进入C++26标准。

新接收的重要核心语言提案包括:

- P2662R3 Pack indexing:允许开发者使用数组索引语法提取template parameter pack中的单个元素。

新接收的重要标准库提案包括:

- P1673R13 A free function linear algebra interface based on the BLAS:一个线性代数库,接口设计基于BLAS

- P2905R2 Runtime Format Strings:运行时指定的格式化串

- P2546R5 Debugging Support:一组检测调试器并主动调用调试功能的函数

此外本次会议还进一步讨论了包括Contracts和Reflection在内的其他内容。

https://herbsutter.com/2023/11/11/trip-report-autumn-iso-c-standards-meeting-kona-hi-usa/ Trip report: Autumn ISO C++ standards meeting (Kona, HI, USA)
 
 
Back to Top