TMtxInt::BinaryNot Method

Overload List

#SignatureDescription
1TMtxVecInt *BinaryNot();Applies binary "not" operation to elements stored in the object.
2TMtxVecInt *BinaryNot(int Index, int Len);Apply binary "not" to elements stored in Self (this).
3TMtxVecInt *BinaryNot(TMtxVecInt *Src);Apply binary "not" to Src elements and store the result in Self (this).
4TMtxVecInt *BinaryNot(TMtxVecInt *Src, int SrcIndex, int Index, int Len);Apply binary "not" to Src elements and store the result in Self (this).

Overload 1: TMtxVecInt *BinaryNot();

Applies binary "not" operation to elements stored in the object.

Remarks:

Calculate the binary "not" value of all calling object elemets in-place.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 2: TMtxVecInt *BinaryNot(int Index, int Len);

Apply binary "not" to elements stored in Self (this).

#NameTypeDescription
1Indexint
2Lenint

Returns: the result of binary "not" of values stored in Self (this).

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 3: TMtxVecInt *BinaryNot(TMtxVecInt *Src);

Apply binary "not" to Src elements and store the result in Self (this).

#NameTypeDescription
1SrcTMtxVecInt *

Returns: the result of binary "not" of Src values stored in Self (this).

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *BinaryNot(TMtxVecInt *Src, int SrcIndex, int Index, int Len);

Apply binary "not" to Src elements and store the result in Self (this).

#NameTypeDescription
1SrcTMtxVecInt *
2SrcIndexint
3Indexint
4Lenint

Returns: the result of binary "not" of Src values [SrcIndex]..[SrcIndex+Len-1] stored in Self (this) values [Index]..[Index+Len-1].

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler