Assembly: Python;
The PythonSet class implements the object that is a Python language set.
Constructor name | Brief description | |
Create | The Create constructor creates a set based on the specified values array. |
Property name | Brief description | |
Length | The Length property returns the number elements with values in the set. |
Property name | Brief description | |
Type | The Type property returns object type. |
Method name | Brief description | |
Add | The Add method adds the specified value to the set. | |
Clear | The Clear method deletes all elements of the set. | |
Pop | The Pop method removes the first element from the set and returns its value. | |
Remove | The Remove method removes the element with the specified value from the set. | |
ToArray | The ToArray method transforms set contents into a Fore array. |
See also: