Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Add(const Left: TCplx; const Right: clValue): clValue; | Add left to aRight and return result. |
| 2 | class operator Add(const Left: TOpenCLValue; const Right: clValue): clValue; | Add Left and Right. |
| 3 | class operator Add(const Left: clValue; const Right: TCplx): clValue; | Add Right to Left and return result. |
| 4 | class operator Add(const Left: clValue; const Right: TOpenCLValue): clValue; | Add Left and Right. |
| 5 | class operator Add(const Left: clValue; const Right: clValue): clValue; | Add Left and Right. |
| 6 | class operator Add(const Left: clValue; const Right: Double): clValue; | Add Right to Left and return result. |
| 7 | class operator Add(const Left: Double; const Right: clValue): clValue; | Add Left to Right and return result. |
Overload 1: class operator Add(const Left: TCplx; const Right: clValue): clValue;
Add left to aRight and return result.
Returns: clValue
Overload 2: class operator Add(const Left: TOpenCLValue; const Right: clValue): clValue;
Add Left and Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TOpenCLValue | source TOpenCLValue |
| 2 | Right | clValue |
Returns: clValue
Overload 3: class operator Add(const Left: clValue; const Right: TCplx): clValue;
Add Right to Left and return result.
Returns: clValue
Overload 4: class operator Add(const Left: clValue; const Right: TOpenCLValue): clValue;
Add Left and Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clValue | |
| 2 | Right | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Overload 5: class operator Add(const Left: clValue; const Right: clValue): clValue;
Overload 6: class operator Add(const Left: clValue; const Right: Double): clValue;
Add Right to Left and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clValue | |
| 2 | Right | Double | scalar |
Returns: clValue
Overload 7: class operator Add(const Left: Double; const Right: clValue): clValue;
Add Left to Right and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | clValue |
Returns: clValue