| 626 | typename mem_manager |
| 627 | > |
| 628 | void array<T,mem_manager>:: |
| 629 | sort ( |
| 630 | ) |
| 631 | { |
| 632 | if (this->size() > 1) |
| 633 | { |
| 634 | // call the quick sort function for arrays that is in algs.h |
| 635 | dlib::qsort_array(*this,0,this->size()-1); |
| 636 | } |
| 637 | this->reset(); |
| 638 | } |
| 639 | |
| 640 | // ---------------------------------------------------------------------------------------- |
| 641 |
nothing calls this directly
no test coverage detected