| 101 | // TableIterator |
| 102 | |
| 103 | size_t TableIterator::nextValid ( size_t index ) const { |
| 104 | for ( auto indexs=table->capacity; index < indexs; index++) { |
| 105 | if (tableLiveSlot(*table, index)) { |
| 106 | break; |
| 107 | } |
| 108 | } |
| 109 | return index; |
| 110 | } |
| 111 | |
| 112 | bool TableIterator::first ( Context & context, char * _value ) { |
| 113 | char ** value = (char **)_value; |
nothing calls this directly
no test coverage detected