Join Slack
Powered by
anyone know if it’s expected that some String.form...
# announcements
k
kevinherron
06/28/2019, 7:41 PM
anyone know if it’s expected that some String.format calls don’t work with unsigned types?
b
bezrukov
06/28/2019, 7:55 PM
I think java.lang.String.format doesn't know anything about unsigned types
k
kevinherron
06/28/2019, 8:00 PM
yeah, figures, just thought there’d be some magic unwrapping going on
b
bezrukov
06/28/2019, 8:28 PM
Is %s in the format suitable for you?
k
kevinherron
06/28/2019, 8:37 PM
need %x in this case
g
gildor
06/29/2019, 6:56 AM
%x is for hex? Maybe just uint.toString(16) and %s?
2
Views
Open in Slack
Previous
Next