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