| 264 | } |
| 265 | |
| 266 | Array::Ptr Array::Reverse() const |
| 267 | { |
| 268 | Array::Ptr result = new Array(); |
| 269 | |
| 270 | ObjectLock olock(this); |
| 271 | ObjectLock xlock(result); |
| 272 | |
| 273 | std::copy(m_Data.rbegin(), m_Data.rend(), std::back_inserter(result->m_Data)); |
| 274 | |
| 275 | return result; |
| 276 | } |
| 277 | |
| 278 | void Array::Sort() |
| 279 | { |
no test coverage detected