Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt DivideBy(Int32 Value) | Divide Value with calling vector elements. |
| └ indexed: TMtxVecInt DivideBy(Int32 Value, Int32 Index, Int32 Len) | ||
| 2 | TMtxVecInt DivideBy(Int32 Value, TMtxVecInt Src) | Divide Value with Src vector elements and place result in the calling vector. |
| └ indexed: TMtxVecInt DivideBy(Int32 Value, TMtxVecInt Src, Int32 SrcIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVecInt DivideBy(Int32 Value)
Divide Value with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Int32 |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt DivideBy(Int32 Value, Int32 Index, Int32 Len)
Divide Value with calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Int32 | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
An exception is raised if array borders are overrun.
Overload 2: TMtxVecInt DivideBy(Int32 Value, TMtxVecInt Src)
Divide Value with Src vector elements and place result in the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Int32 | |
| 2 | Src | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Remarks:
Size of the calling vector is adjusted automatically.
Indexed: TMtxVecInt DivideBy(Int32 Value, TMtxVecInt Src, Int32 SrcIndex, Int32 Index, Int32 Len)
Divide Value with Src vector elements [SrcIndex..SrcIndex+Len-1] and place the result in the calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Int32 | |
| 2 | Src | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | SrcIndex | Int32 | source start index |
| 4 | Index | Int32 | start index |
| 5 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
An exception is raised if array borders are overrun.