multiplicationAssignType

If I overload the mul-assign operator, what is the return type (null if not overloaded) of the expression this *= other If the mul-assign operator is not overloaded, this method should return null. When returning null, ShakeAssignable.multiplicationAssignType will know that the mul-assign operator is not overloaded and will use the default mul-assign operator and resolve the type itself.

Return

The return type of the mul-assign expression

Since

0.1.0

Parameters

other

The type to mul

scope

The scope in which the mul-assign is done