public native static operator//=( readonly a as UShort, readonly b as UShort ) as Void
Replaces a with the integer division of a by b.
| Parameter | Description |
|---|---|
a | Mutable target value. |
b | Divisor. |
value = UShort(10) value //= UShort(3) assert value == UShort(3)