| 67 | |
| 68 | template <typename Coll, typename S> |
| 69 | vector<string> stringify(const Coll &c, S stringify) |
| 70 | { |
| 71 | vector<string> result; |
| 72 | std::transform(c.begin(), c.end(), std::back_inserter(result), stringify); |
| 73 | return result; |
| 74 | } |
| 75 | |
| 76 | vector<string> playable_combo_names() |
| 77 | { |
no test coverage detected