BitRightShift bitwise calculation
superclass: UGen
see also [BitAnd], [BitXor], [BitOr], [BitNot], [BitUnsignedRightShift], [BitLeftShift] and [SimpleNumber]
*ar(a, shift)
*kr(a, shift)
s.boot;
{BitRightShift.kr(2r1010, 1, 8).poll}.play
5.asBinaryString(16)
{BitRightShift.kr(2r10011010, 1, 8).poll}.play
77.asBinaryString(16)
{BitRightShift.kr(2r10011010, 2, 8).poll}.play
38.asBinaryString(16)
{BitRightShift.kr(-10, 2, 8).poll}.play
-3.asBinaryString(16)