Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

6
LINES

< > BotCompany Repo | #1029368 // intArrayFromBytes_littleEndian

JavaX fragment (include)

static int[] intArrayFromBytes_littleEndian(byte[] a) {
  int[] b = new int[(a.length+3)/4];
  for (int i = 0; i < b.length; i++)
    b[i] = intFromBytes_littleEndian(a, i*4);
  ret b;
}

Author comment

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: 142 / 192
Version history: 2 change(s)
Referenced in: [show references]