You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// returns +/-1 giving the number's sign, except when value is zero, in which +/-0 is returnedP.signum=function(){return!!this.c&&this.c[0]==0 ? this.s*0 : this.s;};
(May be a better way to just return the signed zero value)
The text was updated successfully, but these errors were encountered:
Would be nice to add this:
(May be a better way to just return the signed zero value)
The text was updated successfully, but these errors were encountered: