natix.CompactDS.BitmapBuilders.GetDiffSetRL64 C# (CSharp) Method

GetDiffSetRL64() public static method

public static GetDiffSetRL64 ( short b, IIEncoder64 coder = null ) : BitmapFromList64
b short
coder IIEncoder64
return BitmapFromList64
        public static BitmapFromList64 GetDiffSetRL64(short b, IIEncoder64 coder = null)
        {
            return delegate (IList<long> L, long n) {
                var rs = new DiffSetRL64 ();
                rs.Build (L, n, b, coder);
                return rs;
            };
        }