I got a warning when trying to do some broadcasting:
julia> 5.0 .* a
┌ Warning: broadcast will default to iterating over its arguments in the future. Wrap arguments of
│ type `x::mystruct` with `Ref(x)` to ensure they broadcast as "scalar" elements.
│ caller = ip:0x0
└ @ Core :-1
where a is a mystruct typed object.
what does the warning mean? how could I get rid of it? thanks.