File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Standard library changes
75
75
* ` Future.copy! ` has been moved to ` Base ` ([ #29178 ] ).
76
76
* New ` ncodeunits(c::Char) ` method as a fast equivalent to ` ncodeunits(string(c)) ` ([ #29153 ] ).
77
77
* ` mean ` and ` var ` now handles the empty case ([ #29033 ] ).
78
+ * New ` sort!(::AbstractArray; dims) ` method that can sort the array along the ` dims ` dimension ([ #28902 ] ).
78
79
79
80
Compiler/Runtime improvements
80
81
-----------------------------
Original file line number Diff line number Diff line change @@ -992,6 +992,9 @@ See [`sort!`](@ref) for a description of possible keyword arguments.
992
992
993
993
To sort slices of an array, refer to [`sortslices`](@ref).
994
994
995
+ !!! compat "Julia 1.1"
996
+ This function requires at least Julia 1.1.
997
+
995
998
# Examples
996
999
```jldoctest
997
1000
julia> A = [4 3; 1 2]
You can’t perform that action at this time.
0 commit comments