| 261 | |
| 262 | template<class Format, class...Args> |
| 263 | [[nodiscard]] codeunit_sequence format(const Format& format_mold_literal, const Args&...args) |
| 264 | { |
| 265 | return details::produce_format(details::format_mold_view{ details::view_sequence(format_mold_literal) }, args...); |
| 266 | } |
| 267 | |
| 268 | // code-region-start: formatter specializations for built-in types |
| 269 |
no test coverage detected