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.

Args:

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

Returns:

The shifted integer value.

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

Shift right or left based on sign of shift amount for scalars.

Args:

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

Returns:

The shifted scalar value.