We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c48ae61 commit b1fbe7fCopy full SHA for b1fbe7f
doc/src/manual/interfaces.md
@@ -706,7 +706,7 @@ array types that have fixed dimensionality requirements.
706
BroadcastStyle(a::AbstractArrayStyle{Any}, ::DefaultArrayStyle) = a
707
BroadcastStyle(a::AbstractArrayStyle{N}, ::DefaultArrayStyle{N}) where N = a
708
BroadcastStyle(a::AbstractArrayStyle{M}, ::DefaultArrayStyle{N}) where {M,N} =
709
- typeof(a)(_max(Val(M),Val(N)))
+ typeof(a)(Val(max(M, N)))
710
```
711
712
You do not need to write binary `BroadcastStyle`
0 commit comments