File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Standard library changes
7575 * ` merge(::NamedTuple, ::NamedTuple...) ` can now be used with more than 2 ` NamedTuple ` s ([ #29259 ] ).
7676 * ` Future.copy! ` has been moved to ` Base ` ([ #29178 ] ).
7777 * New ` ncodeunits(c::Char) ` method as a fast equivalent to ` ncodeunits(string(c)) ` ([ #29153 ] ).
78+ * ` mean ` and ` var ` now handles the empty case ([ #29033 ] ).
7879
7980Compiler/Runtime improvements
8081-----------------------------
Original file line number Diff line number Diff line change 109109
110110Compute the mean of an array over the given dimensions.
111111
112+ !!! compat "Julia 1.1"
113+ `mean` for empty arrays requires at least Julia 1.1.
114+
112115# Examples
113116```jldoctest
114117julia> A = [1 2; 3 4]
You can’t perform that action at this time.
0 commit comments