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

GetDiffSet64() public static method

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