This commit is contained in:
2023-01-06 21:01:06 -08:00
parent d13984dddc
commit d6b7895cab
21 changed files with 190 additions and 190 deletions

View File

@ -19,4 +19,15 @@ namespace Dawn {
++it;
}
}
template<typename T>
void vectorAppend(std::vector<T> *list, std::vector<T> append) {
assertNotNull(list);
auto it = append.begin();
while(it != append.end()) {
list->push_back(*it);
++it;
}
}
}