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