| 2405 | } |
| 2406 | |
| 2407 | bool Object::SetInternalCapacity(index_t new_capacity) |
| 2408 | // Expands mFields to the specified number if fields. |
| 2409 | // Caller *must* ensure new_capacity >= 1 && new_capacity >= mFields.Length(). |
| 2410 | { |
| 2411 | return mFields.SetCapacity(new_capacity); |
| 2412 | } |
| 2413 | |
| 2414 | bool Map::SetInternalCapacity(index_t new_capacity) |
| 2415 | // Caller *must* ensure new_capacity >= 1 && new_capacity >= mCount. |
no test coverage detected