Multiplies the current fixed-point value by an integer (a *= b).
- Template Parameters
-
T | The type of the integer (e.g., int, int32_t). |
- Parameters
-
value | The integer value to multiply with. |
- Returns
- A reference to this object after performing the multiplication, allowing for chaining of operations.
- Note
- This operation modifies the current instance in place. Ensure that the input value is within the valid range to avoid overflow.