|
None | swap (ULVectorExpression e) |
|
ULVectorExpression | assign (ULVectorExpression e) |
| Replaces the current state of self with a copy of the state of the ULVectorExpression instance e. More...
|
|
ULVectorExpression | assign (ConstFVectorExpression e) |
| Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More...
|
|
ULVectorExpression | assign (ConstDVectorExpression e) |
| Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More...
|
|
ULVectorExpression | assign (ConstLVectorExpression e) |
| Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More...
|
|
ULVectorExpression | assign (ConstULVectorExpression e) |
| Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e. More...
|
|
None | assign (object a) |
| Replaces the current state of self with a copy of the state of the object instance a. More...
|
|
None | setElement (int i, int v) |
|
None | __setitem__ (int i, int v) |
|
ULVectorExpression | __iadd__ (ULVectorExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
ULVectorExpression | __iadd__ (ConstULVectorExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
ULVectorExpression | __isub__ (ULVectorExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
ULVectorExpression | __isub__ (ConstULVectorExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
ULVectorExpression | __imul__ (int t) |
| Performs the in-place multiplication operation self *= t . More...
|
|
ULVectorExpression | __idiv__ (int t) |
| Performs the in-place division operation self /= t . More...
|
|
ULVectorExpression | __itruediv__ (int t) |
|
int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
|
|
bool | isEmpty () |
|
int | getSize () |
|
int | getElement (int i) |
|
object | toArray () |
|
bool | __eq__ (ConstULVectorExpression e) |
| Returns the result of the comparison operation self == e . More...
|
|
bool | __ne__ (ConstULVectorExpression e) |
| Returns the result of the comparison operation self != e . More...
|
|
int | __call__ (int i) |
|
int | __getitem__ (int i) |
|
int | __len__ () |
|
str | __str__ () |
| Returns a string representation of the ConstULVectorExpression instance. More...
|
|
ConstULVectorExpression | __pos__ () |
|
ConstULVectorExpression | __neg__ () |
|
ConstULVectorExpression | __add__ (ConstULVectorExpression e) |
| Returns the result of the addition operation self + e . More...
|
|
ConstULVectorExpression | __sub__ (ConstULVectorExpression e) |
| Returns the result of the subtraction operation self - e . More...
|
|
ConstULVectorExpression | __mul__ (int t) |
| Returns the result of the multiplication operation self * t . More...
|
|
ConstULVectorExpression | __mul__ (ConstULMatrixExpression e) |
| Returns the result of the multiplication operation self * e . More...
|
|
ConstULVectorExpression | __div__ (int t) |
| Returns the result of the division operation self / t . More...
|
|
ConstULVectorExpression | __truediv__ (int t) |
|
ConstULVectorExpression | __rmul__ (int t) |
|