Python3EntityBase
Python3Dictionary
![]() | Default constructor that constructs a Python3Dictionary with zero elements. |
![]() | Returns number of items in the dictionary |
![]() | Clears all elements from the dictionary |
![]() | Checks if the dictionary has a element with a given key |
![]() | Checks if the dictionary has a element with a given string key |
![]() | Makes a copy of the dictionary and returns it as new dictionary. |
![]() | Gets list of all Keys in the dictionary and returns them as Python3List. |
![]() | Gets value by given string key from the dictionary |
![]() | Gets value by given key from the dictionary. |
![]() | Gets all values from the dictionary and returns them as Python3List |
![]() | Removes item from the dictionary by a given string key. |
![]() | Removes item from the dictionary by a given key. |
![]() | Sets value in the dictionary by a key. |
![]() | Sets value in the dictionary by a string key. |