|
Uranium
Application Framework
|
A variation of WeakImmutableList which holds a pair of values using weak refernces. More...
Inherits Generic, T, U, and Iterable.
Public Member Functions | |
| def | __init__ (self) |
| def | append |
| Append an item and return a new list. More... | |
| def | remove |
| Remove an item and return a list. More... | |
| def | __iter__ (self) |
A variation of WeakImmutableList which holds a pair of values using weak refernces.
| def UM.Signal.WeakImmutablePairList.append | ( | self, | |
| left_item | |||
| ) |
Append an item and return a new list.
| item | the item to append |
| def UM.Signal.WeakImmutablePairList.remove | ( | self, | |
| left_item | |||
| ) |
Remove an item and return a list.
Note that unlike the normal Python list.remove() method, this ones doesn't throw a ValueError if the item isn't in the list.
| item | item to remove |