-
-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
For PHP these numbers are identified by the PHP_INT_MIN
usually, but Erlang hasn't a limit for integers so, I did the implementation as:
to_int(infinity) -> -9223372036854775808;
to_int(nan) -> -9223372036854775808;
Maybe it should be fixed in another way (see ephp_data.erl
for further details).