- arithmetic-shift-right N1 N2procedure
Returns right shift of N1 by N2 bits. Sign extending.
- N1
- integer ; what to shift.
- N2
- fixnum ; amount to shift.
Essentially (arithmetic-shift <> (- <>)).
Returns right shift of N1 by N2 bits. Sign extending.
Essentially (arithmetic-shift <> (- <>)).