| 163 | private: |
| 164 | template <typename T = Type, enable_if_t<has_reserve_method<T>::value, int> = 0> |
| 165 | void reserve_maybe(const anyset &s, Type *) { |
| 166 | value.reserve(s.size()); |
| 167 | } |
| 168 | void reserve_maybe(const anyset &, void *) {} |
| 169 | |
| 170 | bool convert_iterable(const iterable &itbl, bool convert) { |
no test coverage detected