$$QUERY Math f:Convert int [i:Int] to float qMathIntToFloat Convert Int to Float Converts an integer value to a floating-point value Parameters: Int: the interger that's converted to a float $$END */
| 5977 | $$END |
| 5978 | */ |
| 5979 | float qMathIntToFloat(int i) { return (float)i; } |
| 5980 | |
| 5981 | /* |
| 5982 | $$QUERY |