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

9
LINES

< > BotCompany Repo | #1031655 // intArrayToBytes_littleEndian_flexLength

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (50L/1K).

static byte[] intArrayToBytes_littleEndian_flexLength(int[] a, int n) {
  byte[] b = new byte[n];
  int full = n/4;
  for (int i = 0; i < full; i++)
    intToBytes_inArray_littleEndian(a[i], b, i*4);
  if ((n & 3) != 0)
    intToBytes_inArray_littleEndian_partial(a[full], b, full*4);
  ret b;
}

Author comment

Began life as a copy of #1029378

download  show line numbers  debug dex  old transpilations   

Travelled to 4 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, vouqrxazstgt

No comments. add comment

Snippet ID: #1031655
Snippet name: intArrayToBytes_littleEndian_flexLength
Eternal ID of this version: #1031655/3
Text MD5: 9c5b4d25c8e9828e5b7f960f980d3760
Transpilation MD5: f733aaec9a144b3e4f662e3a55eb0d2f
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:14:45
Source code size: 303 bytes / 9 lines
Pitched / IR pitched: No / No
Views / Downloads: 95 / 152
Version history: 2 change(s)
Referenced in: [show references]