| 6644 | } |
| 6645 | |
| 6646 | bool ScriptingObjects::ScriptUnorderedStack::removeElement(int index) |
| 6647 | { |
| 6648 | auto ok = isEventStack ? eventData.removeElement(index) : data.removeElement(index); |
| 6649 | updateElementBuffer(); |
| 6650 | return ok; |
| 6651 | } |
| 6652 | |
| 6653 | bool ScriptingObjects::ScriptUnorderedStack::clear() |
| 6654 | { |
no outgoing calls
no test coverage detected