Comment Re: Yes (Score 1) 142
> but shock of all shocks, having code templated to the right variable type and not having to dereference pointers is a good thing, performance-wise.
So what? If qsort() is the bottleneck (it hardly ever is IME) and inlining solves the problem, one can still implement a faster or equally fast algorithm in C. More work? Of course, but kinda cool too.