Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function DivideBy(const Value: Integer): TMtxVecInt; | Divide Value with calling vector elements. |
| └ indexed: function DivideBy(const Value: Integer; const Index: Integer; const Len: Integer): TMtxVecInt; | ||
| 2 | function DivideBy(const Value: Integer; const Src: TMtxVecInt): TMtxVecInt; | Divide Value with Src vector elements and store the result in the calling vector. |
| └ indexed: function DivideBy(const Value: Integer; const Src: TMtxVecInt; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt; |
Overload 1: function DivideBy(const Value: Integer): TMtxVecInt;
Divide Value with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer |
Result: stored in self (calling object), returns self for chaining
Teh result is stored in the calling vector.
Indexed: function DivideBy(const Value: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
Divide Value with calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
An exception is raised if array borders are overrun.
Overload 2: function DivideBy(const Value: Integer; const Src: TMtxVecInt): TMtxVecInt;
Divide Value with Src vector elements and store the result in the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer | |
| 2 | Src | TMtxVecInt |
Result: stored in self (calling object), returns self for chaining
An exception is raised if array borders are overrun.
Indexed: function DivideBy(const Value: Integer; const Src: TMtxVecInt; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
Divide Value with Src vector elements [SrcIndex+SrcIndex+Len-1] and store the result in the calling vector [Index...Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Integer | |
| 2 | Src | TMtxVecInt | |
| 3 | SrcIndex | Integer | source start index |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
An exception is raised if array borders are overrun.