| 51 | |
| 52 | template <class TArg> |
| 53 | static consteval auto GetSpecifiers() |
| 54 | { |
| 55 | return TSpecifiers{ |
| 56 | .Conversion = std::string_view{ |
| 57 | std::data(TFormatArg<TArg>::ConversionSpecifiers), |
| 58 | std::size(TFormatArg<TArg>::ConversionSpecifiers)}, |
| 59 | .Flags = std::string_view{ |
| 60 | std::data(TFormatArg<TArg>::FlagSpecifiers), |
| 61 | std::size(TFormatArg<TArg>::FlagSpecifiers)}, |
| 62 | }; |
| 63 | } |
| 64 | |
| 65 | static constexpr char IntroductorySymbol = '%'; |
| 66 |