| 180 | // to_string_fill_right(' ', 5, 42) == "42 " |
| 181 | template <typename T> |
| 182 | std::string to_string_fill_right(const std::string::value_type& filler, |
| 183 | std::size_t min_size, const T& x) |
| 184 | { |
| 185 | return fill_right(filler, min_size, std::to_string(x)); |
| 186 | } |
| 187 | |
| 188 | } // namespace fplus |
no test coverage detected