blob: fe4a12fc0c3e725439c67424d4af66c8438a65fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef BATCHED_APPEND_H
#define BATCHED_APPEND_H
#include <algorithm> //swap
#include <cstddef>
template <class SRange,class Vector>
void batched_append(Vector &v,SRange const& s) {
std::size_t news=v.size()+s.size();
v.reserve(news);
v.insert(v.end(),s.begin(),s.end());
}
//destroys input s, but moves its resources to the end of v. //TODO: use move ctor in c++0x
template <class SRange,class Vector>
void batched_append_swap(Vector &v,SRange & s) {
using namespace std; // to find the right swap via ADL
size_t i=v.size();
size_t news=i+s.size();
v.resize(news);
typename SRange::iterator si=s.begin();
for (;i<news;++i,++si)
swap(v[i],*si);
s.clear();
}
#endif
|