| 583 | } |
| 584 | |
| 585 | void ScriptList::RemoveBelowValue(SQInteger value) |
| 586 | { |
| 587 | this->modifications++; |
| 588 | |
| 589 | for (ScriptListMap::iterator next_iter, iter = this->items.begin(); iter != this->items.end(); iter = next_iter) { |
| 590 | next_iter = std::next(iter); |
| 591 | if (iter->second < value) this->RemoveItem(iter->first); |
| 592 | } |
| 593 | } |
| 594 | |
| 595 | void ScriptList::RemoveBetweenValue(SQInteger start, SQInteger end) |
| 596 | { |
nothing calls this directly
no test coverage detected