fix order on shl impl

this doesn't fix any bugs, it just looks more consistent with the other impl's
This commit is contained in:
Speedy_Lex 2025-03-03 09:51:51 +01:00
parent 81d8edc200
commit 7c62a4766f

View file

@ -493,7 +493,7 @@ macro_rules! shl_impl_all {
)*)
}
shl_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 isize i128 }
shl_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
/// The right shift operator `>>`. Note that because this trait is implemented
/// for all integer types with multiple right-hand-side types, Rust's type