| 452 | return base_vector::append(element); |
| 453 | } |
| 454 | void append(const base_vector& other) |
| 455 | { |
| 456 | std::vector<Ty> elements(other.begin(), other.end()); |
| 457 | pushUndoRecord(OperationRecord(OperationType::Append, this->size(), elements.size(), elements)); |
| 458 | base_vector::append(other); |
| 459 | } |
| 460 | void append(const base_vector& other, size_t begin, size_t end) |
| 461 | { |
| 462 | std::vector<Ty> elements(other.begin() + begin, other.begin() + end); |
nothing calls this directly
no test coverage detected