-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Behavior of BroadcastFunction is inconsistent for ranges #40309
Comments
Ah, the problem is that Line 1303 in 878e1cd
We could just special-case isempty(kwargs) here, which would be a simple enough fix. Alternatively, we can also just remove support for kwargs from BroadcastFunction .
|
Perhaps removing support for |
I mean, with kwargs, |
The docstring for
Base.BroadcastFunction
says that itExcept for ranges
The values are still equal, as we may check with
however the types are different. The
BroadcastFunction(+)
version also allocates whereas the.+
version doesn't.The text was updated successfully, but these errors were encountered: