Libraryless. Click here for Pure Java version (42L/1K).
static <A> ArrayList<Double> floatArrayToDoubleList(float[] a) { if (a == null) null; ret floatArrayToDoubleList(a, 0, a.length); } // no range checking on from/to in the interest of speed static <A> ArrayList<Double> floatArrayToDoubleList(float[] a, int from, int to) { if (a == null) null; ArrayList<Double> l = new(to-from); for (int i = from; i < to; i++) l.add((double) a[i]); ret l; }
Began life as a copy of #1036160
download show line numbers debug dex old transpilations
Travelled to 2 computer(s): mowyntqkapby, mqqgnosmbjvj
No comments. add comment
Snippet ID: | #1036277 |
Snippet name: | floatArrayToDoubleList (makes an ArrayList) |
Eternal ID of this version: | #1036277/4 |
Text MD5: | 561906317f1a740b0a5e62e67d8c13d4 |
Transpilation MD5: | 697ac8fdca9f42de07ce67f14c643f1b |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-11-08 13:06:09 |
Source code size: | 415 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 188 / 269 |
Version history: | 3 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |