45 unsigned int count, size;
61 void SetSize(
int newsize);
74 bool Object(
int i)
const 79 void SetObject(
int i,
bool object)
84 int Add(
int key,
bool object =
true);
86 int Rehash(
int key,
int h);
90 bool operator [](
int i)
const 95 void Delete(
unsigned int index);
97 bool SlotInUse(
int index)
99 return objects[index] !=
false;
103 unsigned int Iterate(
unsigned int key)
const 105 unsigned int h = key & mask;
107 while (objects[h] !=
false && keys[h] != key)
113 unsigned int ReIterate(
unsigned int key,
unsigned int h)
const 117 while (objects[h] !=
false && keys[h] != key)