Libraryless. Click here for Pure Java version (4744L/26K).
static L<Int> countIteratorToList_inclusive(int a default 0, int b) { ret asList(countIterator_inclusive(a, b); } static <A> L<A> countIteratorToList_inclusive(int a default 0, int b, IF1<Int, A> f) { ret asList(countIterator_inclusive(a, b, f); } static L<Int> countIteratorToList_inclusive(int a, int b, int step) { ret asList(countIterator_inclusive_step(a, b, step); } static <A> L<A> countIteratorToList_inclusive(double a, double b, double step, IF1<Double, A> f) { ret asList(countIterator_inclusive(a, b, step, f); } static <A> L<Double> countIteratorToList_inclusive(double a, double b, double step) { ret asList(countIterator_inclusive_step(a, b, step); } static <A> L<A> lambdaMapLike countIteratorToList_inclusive(IF1<Double, A> f, double a, double b, double step) { ret asList(countIterator_inclusive_step(a, b, step, f)); } static <A> L<A> lambdaMapLike countIteratorToList_inclusive(IF1<Int, A> f, int a, int b, int step default 1) { ret asList(countIterator_inclusive(a, b, step, f)); }
Began life as a copy of #1032415
download show line numbers debug dex old transpilations
Travelled to 5 computer(s): bhatertpkbcr, ekrmjmnbrukm, mowyntqkapby, mqqgnosmbjvj, pyentgdyhuwx
No comments. add comment
| Snippet ID: | #1032490 |
| Snippet name: | countIteratorToList_inclusive - asList(countIterator_inclusive(...)) |
| Eternal ID of this version: | #1032490/9 |
| Text MD5: | 0bf4ffe041829cf8095821a32a874ed0 |
| Transpilation MD5: | 3906428d3fab0bdee3edbb1d72dcdeba |
| Author: | stefan |
| Category: | |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2022-01-08 20:06:21 |
| Source code size: | 1076 bytes / 41 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 389 / 518 |
| Version history: | 8 change(s) |
| Referenced in: | [show references] |