| 258 | */ |
| 259 | template <typename T> |
| 260 | static constexpr ::NFormatPrivate::TRightPad<T> RightPad(const T& value, const size_t width, const char padc = ' ') noexcept { |
| 261 | return ::NFormatPrivate::TRightPad<T>(value, width, padc); |
| 262 | } |
| 263 | |
| 264 | template <typename T, int N> |
| 265 | static constexpr ::NFormatPrivate::TRightPad<const T*> RightPad(const T (&value)[N], const size_t width, const char padc = ' ') noexcept { |
no outgoing calls
no test coverage detected