| 455 | } |
| 456 | |
| 457 | SQInteger ScriptList::Next() |
| 458 | { |
| 459 | if (!this->initialized) { |
| 460 | Debug(script, 0, "Next() is invalid as Begin() is never called"); |
| 461 | return 0; |
| 462 | } |
| 463 | return this->sorter->Next().value_or(0); |
| 464 | } |
| 465 | |
| 466 | bool ScriptList::IsEmpty() |
| 467 | { |
no outgoing calls
no test coverage detected