| 169 | // to_string_fill_left(' ', 5, 42) == " 42" |
| 170 | template <typename T> |
| 171 | std::string to_string_fill_left(const std::string::value_type& filler, |
| 172 | std::size_t min_size, const T& x) |
| 173 | { |
| 174 | return fill_left(filler, min_size, std::to_string(x)); |
| 175 | } |
| 176 | |
| 177 | // API search type: to_string_fill_right : (Char, Int, a) -> String |
| 178 | // fwd bind count: 2 |
no test coverage detected