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

49
LINES

< > BotCompany Repo | #1032951 // countIterator_inclusive_list - synonym of countIteratorToList_inclusive

JavaX fragment (include)

static L<Int> countIterator_inclusive_list(int a default 0, int b) {
  ret countIteratorToList_inclusive(a, b);
}







static <A> L<A> countIterator_inclusive_list(int a default 0, int b, IF1<Int, A> f) {
  ret countIteratorToList_inclusive(a, b, f);
}





static L<Int> countIterator_inclusive_list(int a, int b, int step) {
  ret countIteratorToList_inclusive(a, b, step);
}





static <A> L<A> countIterator_inclusive_list(double a, double b, double step, IF1<Double, A> f) {
  ret countIteratorToList_inclusive(a, b, step, f);
}





static <A> L<Double> countIterator_inclusive_list(double a, double b, double step) {
  ret countIteratorToList_inclusive(a, b, step);
}





static <A> L<A> lambdaMapLike countIterator_inclusive_list(IF1<Double, A> f, double a, double b, double step) {
  ret countIteratorToList_inclusive(f, a, b, step);
}

static <A> L<A> lambdaMapLike countIterator_inclusive_list(IF1<Int, A> f, int a, int b, int step default 1) {
  ret countIteratorToList_inclusive(f, a, b, step);
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1032951
Snippet name: countIterator_inclusive_list - synonym of countIteratorToList_inclusive
Eternal ID of this version: #1032951/3
Text MD5: 5ed9d1d28046df7590d2500ecf756e0b
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-10-11 05:20:52
Source code size: 1061 bytes / 49 lines
Pitched / IR pitched: No / No
Views / Downloads: 91 / 109
Version history: 2 change(s)
Referenced in: [show references]