Function Subspace :: sus :: num :: operator>>
template <class U>
auto operator>>(isize l, U r) -> isize
requires
!std::convertible_to<U, u64>
deleted
Satisfies the Shr
concept for signed integers.
Performs sign extension, copying the sign bit to the right if its set.
Panics
This function will panic when r
is not less than the number of bits in l
if overflow checks are enabled (they are by default) and will perform a
wrapping shift if overflow checks are disabled (not the default).
See overflow checks for controlling this behaviour.