| 339 | |
| 340 | template<typename It> |
| 341 | void InsertBackSigned(It cur, It end) { |
| 342 | for (; cur != end; ++cur) { |
| 343 | PushBackSigned(*cur); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | const Vector& GetData() const { |
| 348 | return *data_; |
nothing calls this directly
no outgoing calls
no test coverage detected