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 3c87082 commit 7bbf717Copy full SHA for 7bbf717
src/lazybroadcasting.jl
@@ -32,6 +32,8 @@ BroadcastArray(f, A, As...) = BroadcastArray(broadcasted(f, A, As...))
32
BroadcastMatrix(f, A...) = BroadcastMatrix(broadcasted(f, A...))
33
BroadcastVector(f, A...) = BroadcastVector(broadcasted(f, A...))
34
35
+BroadcastArray{T,N}(f, A...) where {T,N} = BroadcastArray{T,N,typeof(f),typeof(A)}(f, A)
36
+
37
BroadcastArray(b::BroadcastArray) = b
38
BroadcastVector(A::BroadcastVector) = A
39
BroadcastMatrix(A::BroadcastMatrix) = A
0 commit comments