| 168 | void reserve_maybe(const anyset &, void *) {} |
| 169 | |
| 170 | bool convert_iterable(const iterable &itbl, bool convert) { |
| 171 | for (const auto &it : itbl) { |
| 172 | key_conv conv; |
| 173 | if (!conv.load(it, convert)) { |
| 174 | return false; |
| 175 | } |
| 176 | value.insert(cast_op<Key &&>(std::move(conv))); |
| 177 | } |
| 178 | return true; |
| 179 | } |
| 180 | |
| 181 | bool convert_anyset(const anyset &s, bool convert) { |
| 182 | value.clear(); |
no test coverage detected