| 377 | typename T |
| 378 | > |
| 379 | void isort_array ( |
| 380 | T& array, |
| 381 | unsigned long left, |
| 382 | unsigned long right |
| 383 | ) |
| 384 | { |
| 385 | using namespace sort_helpers; |
| 386 | isort_array(array,left,right,comp(array[left])); |
| 387 | } |
| 388 | |
| 389 | // ---------------------------------------------------------------------------------------- |
| 390 |
no test coverage detected