| 6671 | } |
| 6672 | |
| 6673 | bool ScriptingObjects::ScriptUnorderedStack::contains(var value) const |
| 6674 | { |
| 6675 | if (isEventStack) |
| 6676 | return getIndexForEvent(value) != -1; |
| 6677 | else |
| 6678 | return data.contains((float)value); |
| 6679 | } |
| 6680 | |
| 6681 | var ScriptingObjects::ScriptUnorderedStack::asBuffer(bool getAllElements) |
| 6682 | { |