// float values
10.5,
-10.5,
- 10.5e10,
- 10.6E-10,
+ 10.1234567e10,
+ 10.7654321E-10,
.5,
// array values
string(5) "-10.5"
string(4) "-10."
-- Iteration 7 --
-string(12) "105000000000"
+string(12) "101234567000"
string(0) ""
-- Iteration 8 --
-string(7) "1.06E-9"
-string(6) "1.06E-"
+string(13) "1.07654321E-9"
+string(12) "1.07654321E-"
-- Iteration 9 --
string(3) "0.5"
string(2) "0."
unicode(5) "-10.5"
unicode(4) "-10."
-- Iteration 7 --
-unicode(12) "105000000000"
+unicode(12) "101234567000"
unicode(0) ""
-- Iteration 8 --
-unicode(7) "1.06E-9"
-unicode(6) "1.06E-"
+unicode(13) "1.07654321E-9"
+unicode(12) "1.07654321E-"
-- Iteration 9 --
unicode(3) "0.5"
unicode(2) "0."