Searched refs:checked_shift_impl (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/num-traits/src/ops/ |
D | checked.rs | 217 macro_rules! checked_shift_impl { macro 228 checked_shift_impl!(CheckedShl, checked_shl, u8); 229 checked_shift_impl!(CheckedShl, checked_shl, u16); 230 checked_shift_impl!(CheckedShl, checked_shl, u32); 231 checked_shift_impl!(CheckedShl, checked_shl, u64); 232 checked_shift_impl!(CheckedShl, checked_shl, usize); 234 checked_shift_impl!(CheckedShl, checked_shl, u128); 236 checked_shift_impl!(CheckedShl, checked_shl, i8); 237 checked_shift_impl!(CheckedShl, checked_shl, i16); 238 checked_shift_impl!(CheckedShl, checked_shl, i32); [all …]
|