We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb30f8 commit 603b8d9Copy full SHA for 603b8d9
src/lib.rs
@@ -2759,6 +2759,10 @@ mod assign_ops {
2759
"Perform `self |= rhs` as elementwise bit or (in place).\n");
2760
impl_assign_op!(BitXorAssign, bitxor_assign,
2761
"Perform `self ^= rhs` as elementwise bit xor (in place).\n");
2762
+ impl_assign_op!(ShlAssign, shl_assign,
2763
+ "Perform `self <<= rhs` as elementwise left shift (in place).\n");
2764
+ impl_assign_op!(ShrAssign, shr_assign,
2765
+ "Perform `self >>= rhs` as elementwise right shift (in place).\n");
2766
}
2767
2768
/// # Methods for Array Views
0 commit comments