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

21
LINES

< > BotCompany Repo | #1035856 // arrayfill - synonym of fillArray

JavaX fragment (include)

1  
static void arrayfill(byte[] a, byte value) {
2  
  fillArray(a, value);
3  
}
4  
5  
6  
7  
static void arrayfill(int[] a, int value) {
8  
  fillArray(a, value);
9  
}
10  
11  
12  
13  
static void arrayfill(float[] a, float value) {
14  
  fillArray(a, value);
15  
}
16  
17  
18  
19  
static void arrayfill(double[] a, double value) {
20  
  fillArray(a, value);
21  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 2 computer(s): elmgxqgtpvxh, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1035856
Snippet name: arrayfill - synonym of fillArray
Eternal ID of this version: #1035856/1
Text MD5: 7448e13647e137a8bd3e67099b11c58e
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-08-03 04:07:30
Source code size: 302 bytes / 21 lines
Pitched / IR pitched: No / No
Views / Downloads: 66 / 74
Referenced in: [show references]