Build() public method

build methods
public Build ( IEnumerable orderedList, int n, short b, IIEncoder32 coder = null ) : void
orderedList IEnumerable
n int
b short
coder IIEncoder32
return void
Beispiel #1
0
 public static BitmapFromList GetDiffSet(short sample_step, IIEncoder32 coder = null)
 {
     return delegate (IList<int> L) {
         var rs = new DiffSet ();
         rs.Build (L, sample_step, coder);
         return rs;
     };
 }
Beispiel #2
0
 public static BitmapFromBitStream GetDiffSet_wt(short sample_step, IIEncoder32 coder = null)
 {
     return delegate (FakeBitmap b) {
         var rs = new DiffSet ();
         rs.Build (CreateSortedList (b), b.Count, sample_step, coder);
         return rs;
     };
 }