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

31
LINES

< > BotCompany Repo | #1034377 // concatMapStrings - synonym of concatMap_strings

JavaX fragment (include)

static S concatMapStrings(O f, Iterable l) {
  ret concatMap_strings(f, l);
}



static S concatMapStrings(O f, O[] l) {
  ret concatMap_strings(f, l);
}



static S concatMapStrings(Iterable l, O f) {
  ret concatMap_strings(l, f);
}



static <A> S concatMapStrings(Iterable<A> l, IF1<A, S> f) {
  ret concatMap_strings(l, f);
}



static <A> S lambdaMapLike concatMapStrings(IF1<A, S> f, Iterable<A> l) {
  ret concatMap_strings(f, l);
}

static <A> S lambdaMapLike concatMapStrings(IF1<A, S> f, A[] l) {
  ret concatMap_strings(f, l);
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1034377
Snippet name: concatMapStrings - synonym of concatMap_strings
Eternal ID of this version: #1034377/2
Text MD5: 5dbc7103a2f75380cc73b69668ef8566
Author: someone
Category:
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-04-05 21:12:43
Source code size: 570 bytes / 31 lines
Pitched / IR pitched: No / No
Views / Downloads: 90 / 119
Version history: 1 change(s)
Referenced in: [show references]