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
this seems to only work for integers is there a work around to make it work with doubles? i have to send data that is more accurate than the closest whole number
The text was updated successfully, but these errors were encountered:
There is indeed a dirty workaround. Multiply your number by 1000 before you send it and then divide by 1000 again on the receiving side (use floating point division, not integer division)
this seems to only work for integers is there a work around to make it work with doubles? i have to send data that is more accurate than the closest whole number
The text was updated successfully, but these errors were encountered: