pike.git
/
CHANGES
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/CHANGES:152:
o Stdio.UDP()->send() no longer throws errors on EMSGSIZE and EWOULDBLOCK. o If a thread exits with by throwing, the thrown value is propagated to wait(). 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 magnitude need to apply the
appropritate
sorting
+
differences in magnitude need to apply the
appropriate
sorting
before arithmetics. As `+ was the only operator that performed sorting, and functions like Array.sum did not, this was already a concern. o Returning UNDEFINED from `+ and ``+ is not allowed and will cause an exception. New modules -----------