Inheritance: natix.CompactDS.RankSelectBase
Exemplo n.º 1
0
 public static BitmapFromBitStream GetRRR_wt(short sample_step)
 {
     return delegate (FakeBitmap b) {
         var rs = new RRR ();
         rs.Build (b.B, sample_step);
         return rs;
     };
 }
Exemplo n.º 2
0
 public static BitmapFromList GetRRR(short block_size)
 {
     return delegate (IList<int> L) {
         var rs = new RRR ();
         rs.Build (L, block_size);
         return rs;
     };
 }