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
If both types are primitives and the expression is non-generic (i.e., directly uses concrete types), then the modifying operand will be evaluated first followed by the assigned operand.
907
907
It will then set the value of the assigned operand's place to the value of performing the operation of the operator with the values of the assigned operand and modifying operand.
908
908
909
+
```rust
910
+
# usecore::{num::Wrapping, ops::AddAssign};
911
+
#
912
+
fnf1(x: (u8,)) {
913
+
letmutorder:Vec<u64> =vec![];
914
+
// The RHS is evaluated first as both operands are of primitive
0 commit comments