The Quick3String provides static methods for sorting an array of strings using 3-way radix quicksort.
| 37 | /// The Quick3String provides static methods for sorting an |
| 38 | /// array of strings using 3-way radix quicksort. |
| 39 | pub struct Quick3String<T> { |
| 40 | _marker: PhantomData<T>, |
| 41 | } |
| 42 | |
| 43 | /// The Quick3Way provides static methods for sorting an |
| 44 | /// array using quicksort with 3-way partitioning. |
nothing calls this directly
no outgoing calls
no test coverage detected