MatrixInt.op_Implicit Operator

Overload List

#SignatureDescription
1TMtxInt op_Implicit(MatrixInt AValue)Implicit type conversion from MatrixInt to TMtxInt.
2TMtxVecBase op_Implicit(MatrixInt AValue)Implicit type conversion from MatrixInt to TMtxInt.
3TMtxVecInt op_Implicit(MatrixInt AValue)Implicit type conversion from MatrixInt to TMtxInt.
4Byte} op_Implicit(MatrixInt a)Implicit conversion from MatrixInt to Span<Byte>.
5Int16} op_Implicit(MatrixInt a)Implicit conversion from MatrixInt to Span<SmallInt>.
6Int32} op_Implicit(MatrixInt a)Implicit conversion from MatrixInt to Span<Integer>.
7MatrixInt op_Implicit(Int32[] AValue)Implicit type conversion from an array of integer to MatrixInt.
8MatrixInt op_Implicit(Int32[][] AValue)Implicit type conversion from an array of integer to MatrixInt.

Overload 1: TMtxInt op_Implicit(MatrixInt AValue)

Implicit type conversion from MatrixInt to TMtxInt.

#NameTypeDescription
1AValueMatrixInt

Result: stored in self (calling object), returns self for chaining

Remarks:

Returns a pointer to the internal TMtxInt object.

Overload 2: TMtxVecBase op_Implicit(MatrixInt AValue)

Implicit type conversion from MatrixInt to TMtxInt.

#NameTypeDescription
1AValueMatrixInt

Returns: TMtxVecBase

Remarks:

Returns a pointer to the internal TMtxInt object.

Overload 3: TMtxVecInt op_Implicit(MatrixInt AValue)

Implicit type conversion from MatrixInt to TMtxInt.

#NameTypeDescription
1AValueMatrixInt

Result: stored in self (calling object), returns self for chaining

Remarks:

Returns a pointer to the internal TMtxInt object.

Overload 4: Byte} op_Implicit(MatrixInt a)

Implicit conversion from MatrixInt to Span<Byte>.

#NameTypeDescription
1aMatrixInt

Returns: Byte}

Overload 5: Int16} op_Implicit(MatrixInt a)

Implicit conversion from MatrixInt to Span<SmallInt>.

#NameTypeDescription
1aMatrixInt

Returns: Int16}

Overload 6: Int32} op_Implicit(MatrixInt a)

Implicit conversion from MatrixInt to Span<Integer>.

#NameTypeDescription
1aMatrixInt

Returns: Int32}

Overload 7: MatrixInt op_Implicit(Int32[] AValue)

Implicit type conversion from an array of integer to MatrixInt.

#NameTypeDescription
1AValueInt32[]

Result: stored in self (calling object), returns self for chaining

Remarks:

Copies array, but does not resize resulting matrix. Example of usage in Delphi XE7 and newer:

var a: MatrixInt;
begin
a.Size(2,2);
a := [1,2,3,4]; //same as a = [[1,2],[3,4]] end;

Overload 8: MatrixInt op_Implicit(Int32[][] AValue)

Implicit type conversion from an array of integer to MatrixInt.

#NameTypeDescription
1AValueInt32[][]

Result: stored in self (calling object), returns self for chaining

Remarks:

Copies array and resizes resulting matrix. Example of usage:

var a: MatrixInt;
begin
a := [[1,2],[3,4]];
a := [[1,2],[3,4]] + [1,2]; //the + here is "row concatenation" a := [1,2,3,4] + a; //operator not applicable (it wont compile) end;