Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork320
Adding support for set and frozenset objects#437
-
Hello, |
BetaWas this translation helpful?Give feedback.
All reactions
You can manipulate them using the sequence api.
For instance using VarPyth:
PySet := VarPythonEval('set("abc")');forvar memberin VarPyIterate(PySet)do WriteLn(member);if PySet.Contains("a")then Writeln('PySet contains "a");
Replies: 2 comments 1 reply
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
You can manipulate them using the sequence api. PySet := VarPythonEval('set("abc")');forvar memberin VarPyIterate(PySet)do WriteLn(member);if PySet.Contains("a")then Writeln('PySet contains "a"); |
BetaWas this translation helpful?Give feedback.
All reactions
-
Thanks for the detailed answer. |
BetaWas this translation helpful?Give feedback.
All reactions
-
I have turned this into an issue#438 so that the python set C-API will be added. |
BetaWas this translation helpful?Give feedback.