//This file is part of the IVD project and is licensed under the terms of the LGPL-3.0-only #ifndef ROUTINE_H #define ROUTINE_H namespace RustUtils { namespace Routine { template void appendContainer(T& left, const T& right) { left.insert(left.end(), right.cbegin(), right.cend()); } }//Routine }//RustUtils #endif // ROUTINE_H