PythonSet

Assembly: Python;

Description

The PythonSet class implements the object that is a Python language set.

Constructors

  Constructor name Brief description
Create The Create constructor creates a set based on the specified values array.

Class object properties inherited from IPythonSet

  Property name Brief description
Length The Length property returns the number elements with values in the set.

Class object properties inherited from IPythonObject

  Property name Brief description
Type The Type property returns object type.

Class object methods inherited from IPythonSet

  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:

Python Assembly Classes