File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,6 @@ New library functions
6868---------------------
6969
7070* New function ` Iterators.flatmap ` ([ #44792 ] ).
71- * New helper ` Splat(f) ` which acts like ` x -> f(x...) ` , with pretty printing for
72- inspecting which function ` f ` was originally wrapped ([ #42717 ] ).
7371* New ` pkgversion(m::Module) ` function to get the version of the package that loaded
7472 a given module, similar to ` pkgdir(m::Module) ` ([ #45607 ] ).
7573* New function ` stack(x) ` which generalises ` reduce(hcat, x::Vector{<:Vector}) ` to any dimensionality,
@@ -98,6 +96,8 @@ Standard library changes
9896* ` @kwdef ` is now exported and added to the public API ([ #46273 ] ).
9997* An issue with order of operations in ` fld1 ` is now fixed ([ #28973 ] ).
10098* Sorting is now always stable by default, as ` QuickSort ` was stabilized ([ #45222 ] ).
99+ * ` Base.splat ` is now exported. The return value is now a ` Base.Splat ` instead
100+ of an anonymous function, which allows for pretty printing ([ #42717 ] ).
101101
102102#### Package Manager
103103
@@ -185,7 +185,6 @@ Standard library changes
185185Deprecated or removed
186186---------------------
187187
188- * Unexported ` splat ` is deprecated in favor of exported ` Splat ` , which has pretty printing of the wrapped function ([ #42717 ] ).
189188
190189External dependencies
191190---------------------
You can’t perform that action at this time.
0 commit comments