21.01.2014, 09:58
No, you can use the standard operators. The standard operators are overloaded to call these respective functions. Using the functions might be marginally faster, but they don't improve readability.
In float.inc:
In float.inc:
pawn Код:
stock Float:operator*(Float:oper1, oper2)
return floatmul(oper1, float(oper2)); /* "*" is commutative */