template<typename type, class allocator>
Sorts the array into numerical order.
Definition at line 195 of file qmemarray.h. 00196 { 00197 if(extArray) throw "Not implemented for external arrays"; 00198 std::sort(Base::begin(), Base::end(), sortPredicate); 00199 }
|