Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | List of all members
CDPL.Math.ULVectorExpression Class Reference
+ Inheritance diagram for CDPL.Math.ULVectorExpression:

Public Member Functions

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)
 
- Public Member Functions inherited from CDPL.Math.ConstULVectorExpression
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)
 

Additional Inherited Members

- Properties inherited from CDPL.Math.ConstULVectorExpression
 objectID = property(getObjectID)
 
 size = property(getSize)
 

Member Function Documentation

◆ swap()

None CDPL.Math.ULVectorExpression.swap ( ULVectorExpression  e)
Parameters
e

◆ assign() [1/6]

ULVectorExpression CDPL.Math.ULVectorExpression.assign ( ULVectorExpression  e)

Replaces the current state of self with a copy of the state of the ULVectorExpression instance e.

Parameters
eThe ULVectorExpression instance to copy.
Returns
self

◆ assign() [2/6]

ULVectorExpression CDPL.Math.ULVectorExpression.assign ( ConstFVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e.

Parameters
eThe ConstFVectorExpression instance to copy.
Returns
self

◆ assign() [3/6]

ULVectorExpression CDPL.Math.ULVectorExpression.assign ( ConstDVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e.

Parameters
eThe ConstDVectorExpression instance to copy.
Returns
self

◆ assign() [4/6]

ULVectorExpression CDPL.Math.ULVectorExpression.assign ( ConstLVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e.

Parameters
eThe ConstLVectorExpression instance to copy.
Returns
self

◆ assign() [5/6]

ULVectorExpression CDPL.Math.ULVectorExpression.assign ( ConstULVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e.

Parameters
eThe ConstULVectorExpression instance to copy.
Returns
self

◆ assign() [6/6]

None CDPL.Math.ULVectorExpression.assign ( object  a)

Replaces the current state of self with a copy of the state of the object instance a.

Parameters
aThe object instance to copy.
Returns
self

◆ setElement()

None CDPL.Math.ULVectorExpression.setElement ( int  i,
int  v 
)
Parameters
i
v

◆ __setitem__()

None CDPL.Math.ULVectorExpression.__setitem__ ( int  i,
int  v 
)
Parameters
i
v

◆ __iadd__() [1/2]

ULVectorExpression CDPL.Math.ULVectorExpression.__iadd__ ( ULVectorExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated ULVectorExpression instance self.

◆ __iadd__() [2/2]

ULVectorExpression CDPL.Math.ULVectorExpression.__iadd__ ( ConstULVectorExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated ULVectorExpression instance self.

◆ __isub__() [1/2]

ULVectorExpression CDPL.Math.ULVectorExpression.__isub__ ( ULVectorExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated ULVectorExpression instance self.

◆ __isub__() [2/2]

ULVectorExpression CDPL.Math.ULVectorExpression.__isub__ ( ConstULVectorExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated ULVectorExpression instance self.

◆ __imul__()

ULVectorExpression CDPL.Math.ULVectorExpression.__imul__ ( int  t)

Performs the in-place multiplication operation self *= t.

Parameters
tSpecifies the multiplier.
Returns
The updated ULVectorExpression instance self.

◆ __idiv__()

ULVectorExpression CDPL.Math.ULVectorExpression.__idiv__ ( int  t)

Performs the in-place division operation self /= t.

Parameters
tSpecifies the divisor.
Returns
The updated ULVectorExpression instance self.

◆ __itruediv__()

ULVectorExpression CDPL.Math.ULVectorExpression.__itruediv__ ( int  t)
Parameters
t
Returns