You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the old function did the opposite of what it said in the in documentation.
The Julia convention is that the modified argument is first. This case is actually ambiguous because while in connect!(x, y), x will be lazily-modified whenever y is, the way Observables is implemented means the actual change in connectivity is made to y. So this argument isn't as definitive as it could be.
If people had wanted to preserve the old behavior, they should have submitted a PR to fix the docstring. No one did over years of use.
how about make a new function and keep connect! as 0.3.x?
[0.3.x] connect!(x,y) means
x->y
[0.4.x] plugin!(x,y)/update!(x,y)/transfer!(x,y) means
y->x
The text was updated successfully, but these errors were encountered: