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

72
LINES

< > BotCompany Repo | #1028913 // mAp - synonym of map

JavaX fragment (include)

static L mAp(Iterable l, O f) {
  ret map(l, f);
}



static L mAp(O f, Iterable l) {
  ret map(f, l);
}


  static <A, B> L<B> mAp(Iterable<A> l, F1<A, B> f) {
  ret map(l, f);
}



  static <A, B> L<B> mAp(F1<A, B> f, Iterable<A> l) {
  ret map(f, l);
}



static <A, B> L<B> mAp(IF1<A, B> f, Iterable<A> l) {
  ret map(f, l);
}


static <A, B> L<B> mAp(Iterable<A> l, IF1<A, B> f) {
  ret map(l, f);
}


  
static <A, B> L<B> mAp(IF1<A, B> f, A[] l) {
  ret map(f, l);
}


static <A, B> L<B> mAp(A[] l, IF1<A, B> f) {
  ret map(l, f);
}


  
static L mAp(O f, O[] l) {
  ret map(f, l);
}


static L mAp(O[] l, O f) {
  ret map(l, f);
}



static L mAp(O f, Map map) {
  ret map(f, map);
}



// map: func(key, value) -> list element
static L mAp(Map map, O f) {
  ret map(map, f);
}



static <A, B, C> L<C> mAp(Map<A, B> map, IF2<A, B, C> f) {
  ret map(map, f);
}

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1028913
Snippet name: mAp - synonym of map
Eternal ID of this version: #1028913/1
Text MD5: 191b125ba62648680690c71fe10a82e7
Author: stefan
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-07-11 21:28:24
Source code size: 889 bytes / 72 lines
Pitched / IR pitched: No / No
Views / Downloads: 79 / 113
Referenced in: [show references]