We let you see if a bucket is non-empty without retrieving it -------------------------------------------------------------
| 2124 | // We let you see if a bucket is non-empty without retrieving it |
| 2125 | // ------------------------------------------------------------- |
| 2126 | bool test(size_type i) const |
| 2127 | { |
| 2128 | // assert(i < _table_size); |
| 2129 | return which_group(i).test(pos_in_group(i)); |
| 2130 | } |
| 2131 | |
| 2132 | // also tests for erased values |
| 2133 | // ---------------------------- |