1 Matching Annotations
- Mar 2019
-
runestone.academy runestone.academy
-
remove aset.remove(item) Removes item from the set
There's also .discard(item) which does the same as .remove(item) except for one thing. It does not raise an error if the item is nonexistent.
-