File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1100,6 +1100,9 @@ ascending order.
1100
1100
See also [`sortperm!`](@ref), [`partialsortperm`](@ref), [`invperm`](@ref), [`indexin`](@ref).
1101
1101
To sort slices of an array, refer to [`sortslices`](@ref).
1102
1102
1103
+ !!! compat "Julia 1.9"
1104
+ The method accepting `dims` requires at least Julia 1.9.
1105
+
1103
1106
# Examples
1104
1107
```jldoctest
1105
1108
julia> v = [3, 1, 2];
@@ -1163,6 +1166,9 @@ end
1163
1166
Like [`sortperm`](@ref), but accepts a preallocated index vector or array `ix` with the same `axes` as `A`. If `initialized` is `false`
1164
1167
(the default), `ix` is initialized to contain the values `LinearIndices(A)`.
1165
1168
1169
+ !!! compat "Julia 1.9"
1170
+ The method accepting `dims` requires at least Julia 1.9.
1171
+
1166
1172
# Examples
1167
1173
```jldoctest
1168
1174
julia> v = [3, 1, 2]; p = zeros(Int, 3);
You can’t perform that action at this time.
0 commit comments