示例#1
0
 public BitSet(int capacity)
 {
     vector = new Vector.BitVector(capacity);
 }
示例#2
0
 public Set(int capacity, int hashCount, Func <T, int, int> hash)
 {
     vector    = new Vector.BitVector(capacity);
     HashCount = hashCount;
     Hash      = hash;
 }