| 409 | } |
| 410 | |
| 411 | void MoveTo(ArrayBase<T>& dest) |
| 412 | { |
| 413 | dest.mVals = this->mVals; |
| 414 | dest.mSize = this->mSize; |
| 415 | dest.mAllocSize = this->mAllocSize; |
| 416 | |
| 417 | this->mVals = NULL; |
| 418 | this->mSize = 0; |
| 419 | this->mAllocSize = 0; |
| 420 | } |
| 421 | |
| 422 | void Sort(std::function<bool(const T&, const T&)> pred) |
| 423 | { |