constexpr formatter<T, charT>& underlying() noexcept; // (1) C++23
constexpr const formatter<T, charT>& underlying() const noexcept; // (2) C++23
概要
Rangeの要素型に対するformatterを取得する。
- (1) : 非const版
- (2) : const版
戻り値
メンバ変数として保持している、Rangeの要素型に対するformatterを返す。
バージョン
言語
- C++23
処理系
- Clang: ??
- GCC: ??
- Visual C++: ??
参照
- LWG Issue 3839.
range_formatter'sset_separator,set_brackets, andunderlyingfunctions should benoexcept- C++23で、この関数に
noexceptが付加された
- C++23で、この関数に