summaryrefslogtreecommitdiff
path: root/AK/QuickSort.h
AgeCommit message (Collapse)Author
2019-06-07LibGUI: Run clang-format on everything.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-05-26QuickSort: Don't sort a single item, nothing to doRobin Burchell
2019-05-19AK: Simplify quick_sort() and improve Vector iterators a bit.Andreas Kling
2019-03-09AK: Add a basic QuickSort template implementation.Andreas Kling
It was depressing not being able to capture anything when passing a lambda to qsort_r() so let's just have our own QuickSort. I was gonna have to do this eventually anyway. :^)