Skip to main content
Log in

Mojo function

shiftr

shiftr(a: Int, s: Int) -> Int

Shift right or left based on sign of shift amount.

Performs a right shift if s is positive, or a left shift if s is negative.

Args:

  • a (Int): The integer value to shift.
  • s (Int): The shift amount. Positive for right, negative for left.

Returns:

The shifted integer value.

shiftr(a: SIMD[dtype, 1], s: SIMD[dtype, 1]) -> SIMD[dtype, 1]

Shift right/left based on sign of shift for scalars.

Scalar version of shiftr. Right shift if s is positive, left shift if s is negative.

Args:

  • a (SIMD[dtype, 1]): The scalar value to shift.
  • s (SIMD[dtype, 1]): The scalar shift amount. Positive for right, negative left.

Returns:

The shifted scalar value.