1 | static byte[] concatByteArrays_reverseSecond(byte[] a, byte[] b) { |
2 | int la = l(a), lb = l(b), n = la+lb; |
3 | byte[] out = new byte[n]; |
4 | arraycopy(a, 0, out, 0, la); |
5 | for i to lb: |
6 | out[n-1-i] = b[i]; |
7 | ret out; |
8 | } |
download show line numbers debug dex old transpilations
Travelled to 6 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1024740 |
Snippet name: | concatByteArrays_reverseSecond |
Eternal ID of this version: | #1024740/1 |
Text MD5: | da56cb9258896c66e1d604e27928451b |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2019-08-24 15:44:57 |
Source code size: | 222 bytes / 8 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 272 / 273 |
Referenced in: | [show references] |