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
From now on, do the arith operations, users have to do the following
```
let a = randu(Dim4::new(&[4,4,1,1]));
let b = &a + 3.5;
let c = &a - &b;
```
We can't do just `a+b` because of move semantics limitation. This
may be improved later when `Copy` trait can be implemented on
Objects with `Drop` trait implemented.
0 commit comments