pike.git
/
CHANGES
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/CHANGES:106:
Alternatively the "function" Pike.yield() may be used to return a value, and restart with a value from the restarter. Restartable functions get the type signature X fun(mixed|void value, function(mixed|void: void)|void resume_cb) where X is the declared return type of the generator function, value is the value to be returned by Pike.yield(), and resume_cb
-
is a function that will be called at the yield point.
+
is a function that will be called at the yield point.
resume_cb
+
may be used to eg behave as if Pike.yield() had thrown an error.
o Machine code support for more architectures. There's now machine code support for arm32 and arm64. o Fixed multiple integer over- and underflow bugs. o Extended sscanf %O sscanf() is now able to parse all base types that sprintf %O can