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

51
LINES

< > BotCompany Repo | #1033522 // countIteratorAsList - synonym of countIteratorToList

JavaX fragment (include)

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







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





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





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





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





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



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

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1033522
Snippet name: countIteratorAsList - synonym of countIteratorToList
Eternal ID of this version: #1033522/1
Text MD5: 8cbab81ee3329c88d72e626b4bf7fbd3
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-10-30 17:43:17
Source code size: 890 bytes / 51 lines
Pitched / IR pitched: No / No
Views / Downloads: 95 / 116
Referenced in: [show references]