natix.CompactDS.RRR.GetClass C# (CSharp) Method

GetClass() static private method

static private GetClass ( short b ) : byte
b short
return byte
        static byte GetClass(short b)
        {
            return (byte)(Bits.PopCount8[b & 0xff] + Bits.PopCount8[b >> 8]);
        }