File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ Language changes
20
20
to the ` Core ` module ([ #29968 ] ).
21
21
* Using the same name for both a local variable and a static parameter is now an error instead
22
22
of a warning ([ #29429 ] ).
23
+ * ` findall(in(b), a) ` now returns a ` CartesianIndex ` when ` a ` is a matrix or a higher-dimensional array,
24
+ for consistency with other ` findall ` methods. Use ` LinearIndices(a)[findall(in(b), a)] ` to get
25
+ the old behavior, or ` CartesianIndices(a)[findall(in(b), a)] ` to get the new behavior
26
+ on previous Julia versions ([ #30226 ] ).
27
+ * ` findmin(::BitArray) ` and ` findmax(::BitArray) ` now return a ` CartesianIndex ` when ` a ` is a matrix
28
+ or a higher-dimensional array, for consistency with for other array types.
29
+ Use ` LinearIndices(a)[findmin(a)[2]] ` to get the old behavior, or ` CartesianIndices(a)[findmin(a)[2]] `
30
+ to get the new behavior on previous Julia versions ([ #30102 ] ).
23
31
24
32
Command-line option changes
25
33
---------------------------
You can’t perform that action at this time.
0 commit comments