Join Slack
Powered by
public static long getUnsignedIntLE(byte[ ] b) { ...
# chicago
b
bjonnh
04/29/2020, 7:03 PM
public static long getUnsignedIntLE(byte[] b) { return (((b[3] & 0xff) << 24) | ((b[2] & 0xff) << 16) | ((b[1] & 0xff) << 8) | (b[0] & 0xff)); }
Open in Slack
Previous
Next