Closed tawheeler closed 7 years ago
Thanks for the report. Also looks like we're overloading vectorized &
, |
, and $
, which are deprecated for regular arrays (and $
is deprecated in general). So when this is addressed we should also make sure we switch to overloading broadcast(::typeof(&), ...)
, etc instead.
Edit: Which means your example should then be A .&= DataArray([true, true, false])
To be clear, in Julia 0.6, the A &= DataArray([true, true, false])
syntax is deprecated in favor of A .&= DataArray([true, true, false])
, which already works. Though indeed it would be nice to print a deprecation rather than throwing a MethodError
.
Fixed on master, will be available in the next release (METADATA PR pending).
The following minimal example throws an ambiguity error: