TVecSmallInt.FindIndexes Method

Overload List

#SignatureDescription
1function FindIndexes(const a: TMtxVecInt; const op: string; const b: TMtxVecInt): TMtxVecInt;Finds matching indexes. The b parameter is of TMtxVecInt type.
2function FindIndexes(const a: TMtxVecInt; const op: string; const b: Integer): TMtxVecInt;Finds matching indexes. The b parameter is of integer type.

Overload 1: function FindIndexes(const a: TMtxVecInt; const op: string; const b: TMtxVecInt): TMtxVecInt;

Finds matching indexes. The b parameter is of TMtxVecInt type.

#NameTypeDescription
1aTMtxVecIntsource TVecInt or TMtxInt
2opstring
3bTMtxVecIntsource TVecInt or TMtxInt

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

Remarks:

op parameter can be < , > , >= , <= , = or <>

Overload 2: function FindIndexes(const a: TMtxVecInt; const op: string; const b: Integer): TMtxVecInt;

Finds matching indexes. The b parameter is of integer type.

#NameTypeDescription
1aTMtxVecIntsource TVecInt or TMtxInt
2opstring
3bInteger

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

Remarks:

op parameter can be < , > , >= , <= , = or <>