1# We don't encode +nan and -nan back with the signs; many languages don't 2# support a sign on NaN (it doesn't really make much sense). 3nan = nan 4nan_neg = -nan 5nan_plus = +nan 6infinity = inf 7infinity_neg = -inf 8infinity_plus = +inf
View as plain text