pike.git/
CHANGES
Branch:
Tag:
Non-build tags
All tags
No tags
2017-01-01
2017-01-01 05:19:19 by Martin Nilsson <nilsson@fastmail.com>
f750691f590157f15014ab01236b6515e44849cc (
8
lines) (+
8
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Remove float sorting in +. It is not supported consistently in throughout Pike.
109:
o String.trim_all_whites() renamed String.trim().
+
o Floats are no longer by default sorted before added. This may reduce
+
the precision but increases the speed of adding large number of
+
floats by a factor of 500. Applications handling floats with large
+
differences in magnitudes needs to apply the appropritate sorting
+
before arithmetics. As `+ was the only operator that performed
+
sorting, and functions like Array.sum did not, this was already a
+
concern.
New modules -----------