Various changes

This commit is contained in:
2023-01-29 15:13:24 -08:00
parent 329383da30
commit 3b458aaf96
40 changed files with 410 additions and 447 deletions

View File

@ -8,6 +8,12 @@
#include "assert/assert.hpp"
namespace Dawn {
/**
* Append a list on to another list.
*
* @param list Pointer to list that is being appended to.
* @param append Pointer to list that will be appended.
*/
template<typename T>
void vectorAppend(std::vector<T> *list, std::vector<T> *append) {
assertNotNull(list);
@ -20,6 +26,12 @@ namespace Dawn {
}
}
/**
* Append a list on to another list.
*
* @param list Pointer to list that is being appended to.
* @param append List that will be appended.
*/
template<typename T>
void vectorAppend(std::vector<T> *list, std::vector<T> append) {
assertNotNull(list);