Class: Set
This is the Set class that emits events.
Constructor
__init__ (self)
Constructor. Initialize the Set data.
Methods
get (self, index)
Retrieve an object from the list. This operation emits a EventSetGet event.
pop (self, index)
Pop an object from the list. This operation emits a EventSetPop event.
push (self, obj)
Push an object on the list. This operation emits a EventSetPush event.
set (self, index, obj)
Update the set at the specified index with the specified object. This operation emits a EventSetSet event.