Set the value at new index i to v. Fast but unsafe: only use if has_index(i) is false.
| 186 | // Set the value at new index i to v. |
| 187 | // Fast but unsafe: only use if has_index(i) is false. |
| 188 | iterator set_new(int i, const Value& v) { |
| 189 | return SetInternal(false, i, v); |
| 190 | } |
| 191 | |
| 192 | // Set the value at index i to v. |
| 193 | // Fast but unsafe: only use if has_index(i) is true. |
no outgoing calls
no test coverage detected