void addToEnd(const Coords &other) { coordinates.insert(coordinates.end(), other.begin(), other.end()); }
Esempio n. 2
0
 inline void addAll(const Coords& other) { coordinates.insert(coordinates.end(), other.begin(), other.end()); }