Transpiled version (37L) is out of date.
svoid setBitInIntArray_littleEndian(int[] array, int iBit) { int iInt = iBit >> 5; array[iInt] |= 1 << (iBit & 31); } svoid setBitInIntArray_littleEndian(int[] array, int iBit, bool value) { int iInt = iBit >> 5; if (value) array[iInt] |= 1 << (iBit & 31); else array[iInt] &= ~(1 << (iBit & 31)); }
download show line numbers debug dex old transpilations
Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj
No comments. add comment
Snippet ID: | #1033659 |
Snippet name: | setBitInIntArray_littleEndian |
Eternal ID of this version: | #1033659/3 |
Text MD5: | b37d2ebd511906c483b14802a7f9b05f |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2021-12-26 16:34:42 |
Source code size: | 329 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 130 / 183 |
Version history: | 2 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1033660 - getBitFromIntArray_littleEndian |