Just all the vectorised comparison function such as .==, .<= etc have been in 0.5 defined separately without the broadcast machinery.
So my question is, how can I simply encapsulate the tuple to get it broadcasted as a scalar, so I can compare the whole tuple. Sure I can make the array from the “scalar” tuple by hand, but that’s just getting things complicated as I would also need to check the size of the other operands.
I’ve tried to understand how exactly the broadcast machinery works, but without a debugger I gaved up - there are just so many calls involved…
I was thinking of some ultrathin magic container that replicates the scalar value to array of any length determined from other arguments during the broadcast call, but will not be used in the function call. Simmilar the zeroarray in the Images.jl package adapts its type and size to match other arguments of channelview function call.
The reason for this is that I’ve used tuples, arrays of tuples and dot comparisons quite often (based on the mess my test cases generated running on the 0.6 version). Thank you for any hint on to how to solve it.