1 | static int[] intArrayFromBytes_littleEndian(byte[] a) {
|
2 | int[] b = new int[(a.length+3)/4]; |
3 | for (int i = 0; i < b.length; i++) |
4 | b[i] = intFromBytes_littleEndian(a, i*4); |
5 | ret b; |
6 | } |
Began life as a copy of #1004987
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
| Snippet ID: | #1029368 |
| Snippet name: | intArrayFromBytes_littleEndian |
| Eternal ID of this version: | #1029368/3 |
| Text MD5: | af4376cfff5d619e9b3db86b95891958 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2021-06-25 04:00:08 |
| Source code size: | 191 bytes / 6 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 475 / 527 |
| Version history: | 2 change(s) |
| Referenced in: | [show references] |