Operator ^= (Exponentiate and Assign)
Exponentiates and assigns a value to a variable
Syntax:
Usage:
lhs ^= rhs
Parameters:
lhs
The variable to assign to.
rhs
The value to exponentiate lhs by.
Description:
This operator exponentiates and assigns a value to a variable. It is functionally equivalent to:
This operator can be overloaded for user-defined types.
Examples:
Dim n As Double
n = 6
n ^= 2
Print n
Sleep
Output:
Dialect Differences:
- In the -lang qb dialect, this operator cannot be overloaded.
Differences from QB:
See also:
There are no comments on this page. [Add comment]