We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4160a8a commit b9d7579Copy full SHA for b9d7579
base/arraymath.jl
@@ -53,7 +53,7 @@ function _elementwise(op, ::Type{Any}, A::AbstractArray, B::AbstractArray)
53
promote_shape(A, B) # check size compatibility
54
return broadcast(op, A, B)
55
end
56
-function _elementwise(op, T::Type, A::AbstractArray, B::AbstractArray)
+function _elementwise{T}(op, ::Type{T}, A::AbstractArray, B::AbstractArray)
57
F = similar(A, T, promote_shape(A, B))
58
for (iF, iA, iB) in zip(eachindex(F), eachindex(A), eachindex(B))
59
@inbounds F[iF] = op(A[iA], B[iB])
0 commit comments