We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bd925 commit 528be73Copy full SHA for 528be73
src/sort/qsort.jl
@@ -4,7 +4,7 @@ midpoint(lo::Integer, hi::Integer) = midpoint(promote(lo, hi)...)
4
import Base.Sort.Algorithm
5
struct HeapSortAlg <: Algorithm end
6
7
-if VERSION >= v"1.9.0-DEV.1635"
+if false #VERSION >= v"1.9.0-DEV.1635" - it seems julia dropped this, we keep it in case
8
struct QuickSortAlg <: Algorithm end # we define it here because Julia 1.9.0-DEV.1635 dropped it / QuickSort = PartialQuickSort{Missing, Missing}
9
# fall back to QuickSortAlg -
10
ds_sort!(v, idx::Vector{<:Integer}, lo::Integer, hi::Integer, a::PartialQuickSort{Missing, Missing}, o::Ordering) = ds_sort!(v, idx, lo::Integer, hi, QuickSortAlg(), o)
0 commit comments