|
|
|
|
|
__contains__(x,
y)
y in x |
|
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
bool
|
append(definition)
Appends a bondwire definition to the list. |
|
|
|
BondwireDefinition
|
at(...)
at(name | index) retrieve a bondwire definition from list. |
|
|
|
None
|
|
|
bool
|
contains(definition)
Determines if the bondwire definition is in the list. |
|
|
|
int
|
index(definition)
Retrieves the index of a bondwire definition. |
|
|
|
bool
|
insert(index,
definition)
Inserts a bondwire definition into the list. |
|
|
|
list
|
names()
Returns the names of the bondwire definitions in the list. |
|
|
|
bool
|
remove(...)
remove(name | index) Removes a bondwire definition. |
|
|
|
bool
|
replace(index,
definition)
Replaces a bondwire definition. |
|
|
|
int
|
size()
Returns the size of the list. |
|
|
|
None
|
swap(a,
b)
Swaps two circuit components. |
|
|
|
Inherited from core.Selectable:
clone,
isSelected
Inherited from core.Updatable:
__enter__,
__exit__,
hash,
isValid,
reasonWhyInvalid
|