Is there a way to suppress scientific notation in Haxe?
For example, if I have:
var f:Float = 0.00007075;
var s:String = Std.string(f);
In targets such as html5, this outputs: 0.00007075
However, c++ targets output: 7.075e-05
Is there a way to control whether scientific notation is used for string format?