Following methods join only non-empty arguments in order with commas.
| 51 | // Following methods join only non-empty arguments in order with |
| 52 | // commas. |
| 53 | string Join(string const & s) |
| 54 | { |
| 55 | return s; |
| 56 | } |
| 57 | |
| 58 | template <typename... Args> |
| 59 | string Join(string const & s, Args &&... args) |
no test coverage detected