clean up
This commit is contained in:
parent
4543473821
commit
299490ca5f
20 changed files with 638 additions and 429 deletions
|
|
@ -27,6 +27,14 @@ public:
|
|||
push_back(b);
|
||||
}
|
||||
}
|
||||
|
||||
datasets operator+(const datasets &B) {
|
||||
datasets AB;
|
||||
AB.reserve(this->size() + B.size());
|
||||
AB.insert(AB.end(), this->begin(), this->end());
|
||||
AB.insert(AB.end(), B.begin(), B.end());
|
||||
return AB;
|
||||
}
|
||||
};
|
||||
|
||||
#endif /* DATASETS_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue