*=
Symbol of Operator.
Overloads
| Name | Description |
|---|---|
(Operator lhs *= const integer rhs) -> Operator | Multiplies an operator by integer scalar, modifying the operator in place. |
(Operator lhs *= const real rhs) -> Operator | Multiplies an operator by real scalar, modifying the operator in place. |
(Operator lhs *= const complex rhs) -> Operator | Multiplies an operator by complex scalar, modifying the operator in place. |
(Operator lhs *= const integer rhs) -> Operator
Multiplies an operator by integer scalar, modifying the operator in place.
Parameters
- lhs: Left-hand side value.
- rhs: The scalar value.
(Operator lhs *= const real rhs) -> Operator
Multiplies an operator by real scalar, modifying the operator in place.
Parameters
- lhs: Left-hand side value.
- rhs: The scalar value.
(Operator lhs *= const complex rhs) -> Operator
Multiplies an operator by complex scalar, modifying the operator in place.
Parameters
- lhs: Left-hand side value.
- rhs: The scalar value.