Actions
Feature #1932
openRename *_Unifloat to *_UF
Start date:
10/21/2011
Due date:
% Done:
100%
Estimated time:
Published in build:
9
Description
I suggest to rename all *_Unifloat
functions to *_UF
(where the U is "uni" and F is "float"). So, this sentence:
currentV = add_Unifloat(currentV, mul_Unifloat(convertInteger_Unifloat(1965889800), power_Unifloat(10, arg)));
will be more readable and compact:
currentV = add_UF(currentV, mul_UF(convertInt_UF(1965889800), power_UF(10, arg)));
Actions