natix.CompactDS.EliasGamma32.EliasGamma32 C# (CSharp) Method

EliasGamma32() static private method

static private EliasGamma32 ( ) : System
return System
        static EliasGamma32()
        {
            // the table stores the number of zeros at the beggining of the byte
            // NOT USED YET, BE AWARE THAT IT'S INVERTED!
            /*PrefixSize = new byte[256];
            PrefixSize[0] = 8;
            int pos = 0;
            for (int i = 0; i < 8; i++) {
                int w = 1 << i;
                Console.WriteLine ("==> i: {0}, w: {1}", i, w, 8-i);
                for (; w > 0; w--,pos++) {
                    PrefixSize[pos] = (byte)(8 - i);
                }
            }*/
        }