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

41
LINES

< > BotCompany Repo | #1032490 // countIteratorToList_inclusive - asList(countIterator_inclusive(...))

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

Libraryless. Click here for Pure Java version (4744L/26K).

1  
static L<Int> countIteratorToList_inclusive(int a default 0, int b) {
2  
  ret asList(countIterator_inclusive(a, b);
3  
}
4  
5  
6  
7  
8  
9  
static <A> L<A> countIteratorToList_inclusive(int a default 0, int b, IF1<Int, A> f) {
10  
  ret asList(countIterator_inclusive(a, b, f);
11  
}
12  
13  
14  
15  
static L<Int> countIteratorToList_inclusive(int a, int b, int step) {
16  
  ret asList(countIterator_inclusive_step(a, b, step);
17  
}
18  
19  
20  
21  
static <A> L<A> countIteratorToList_inclusive(double a, double b, double step, IF1<Double, A> f) {
22  
  ret asList(countIterator_inclusive(a, b, step, f);
23  
}
24  
25  
26  
27  
static <A> L<Double> countIteratorToList_inclusive(double a, double b, double step) {
28  
  ret asList(countIterator_inclusive_step(a, b, step);
29  
}
30  
31  
32  
33  
static <A> L<A> lambdaMapLike countIteratorToList_inclusive(IF1<Double, A> f, double a, double b, double step) {
34  
  ret asList(countIterator_inclusive_step(a, b, step, f));
35  
}
36  
37  
38  
39  
static <A> L<A> lambdaMapLike countIteratorToList_inclusive(IF1<Int, A> f, int a, int b, int step default 1) {
40  
  ret asList(countIterator_inclusive(a, b, step, f));
41  
}

Author comment

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: 117 / 198
Version history: 8 change(s)
Referenced in: [show references]