| 3841 | formatter<T> formatter_; |
| 3842 | public: |
| 3843 | FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> const char* { return formatter_.parse(ctx); } |
| 3844 | |
| 3845 | auto nested(const T& value) const -> nested_view<T> { return nested_view<T> {&formatter_, &value}; } |
| 3846 | }; |