Переглянути джерело

extend() for initializer lists

default_compile_flags
vector-of-bool 5 роки тому
джерело
коміт
1d34c3e529
1 змінених файлів з 5 додано та 0 видалено
  1. +5
    -0
      src/dds/util.hpp

+ 5
- 0
src/dds/util.hpp Переглянути файл

@@ -62,6 +62,11 @@ void extend(Container& c, const Other& o) {
c.insert(c.end(), o.begin(), o.end());
}

template <typename Container, typename Item>
void extend(Container& c, std::initializer_list<Item> il) {
extend(c, il);
}

} // namespace dds

#endif // DDS_UTIL_HPP_INCLUDED

Завантаження…
Відмінити
Зберегти