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

65
LINES

< > BotCompany Repo | #1033875 // countIteratorAsList_incl - synonym of countIteratorToList_inclusive

JavaX fragment (include)

1  
static L<Int> countIteratorAsList_incl(int a default 0, int b) {
2  
  ret countIteratorToList_inclusive(a, b);
3  
}
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
static <A> L<A> countIteratorAsList_incl(int a default 0, int b, IF1<Int, A> f) {
14  
  ret countIteratorToList_inclusive(a, b, f);
15  
}
16  
17  
18  
19  
20  
21  
22  
23  
static L<Int> countIteratorAsList_incl(int a, int b, int step) {
24  
  ret countIteratorToList_inclusive(a, b, step);
25  
}
26  
27  
28  
29  
30  
31  
32  
33  
static <A> L<A> countIteratorAsList_incl(double a, double b, double step, IF1<Double, A> f) {
34  
  ret countIteratorToList_inclusive(a, b, step, f);
35  
}
36  
37  
38  
39  
40  
41  
42  
43  
static <A> L<Double> countIteratorAsList_incl(double a, double b, double step) {
44  
  ret countIteratorToList_inclusive(a, b, step);
45  
}
46  
47  
48  
49  
50  
51  
52  
53  
static <A> L<A> lambdaMapLike countIteratorAsList_incl(IF1<Double, A> f, double a, double b, double step) {
54  
  ret countIteratorToList_inclusive(f, a, b, step);
55  
}
56  
57  
58  
59  
60  
61  
62  
63  
static <A> L<A> lambdaMapLike countIteratorAsList_incl(IF1<Int, A> f, int a, int b, int step default 1) {
64  
  ret countIteratorToList_inclusive(f, a, b, step);
65  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1033875
Snippet name: countIteratorAsList_incl - synonym of countIteratorToList_inclusive
Eternal ID of this version: #1033875/1
Text MD5: bcbe005066afb54aeb5a418ad154de27
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-01-08 20:01:31
Source code size: 1027 bytes / 65 lines
Pitched / IR pitched: No / No
Views / Downloads: 87 / 113
Referenced in: [show references]