static <A> S joinWith(S glue, Iterable<A> strings) { ret join(glue, strings); } static S joinWith(S glue, S... strings) { ret join(glue, strings); } static <A> S joinWith(Iterable<A> strings) { ret join(strings); } static <A> S joinWith(Iterable<A> strings, S glue) { ret join(strings, glue); } static S joinWith(String[] strings) { ret join(strings); } static S joinWith(S glue, Pair p) { ret join(glue, p); }
download show line numbers debug dex old transpilations
Travelled to 3 computer(s): bhatertpkbcr, mowyntqkapby, mqqgnosmbjvj
No comments. add comment
| Snippet ID: | #1032833 | 
| Snippet name: | joinWith - synonym of join | 
| Eternal ID of this version: | #1032833/1 | 
| Text MD5: | 1e112c145f9e43944c63494d7ea4a6da | 
| Author: | someone | 
| Category: | |
| Type: | JavaX fragment (include) | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2021-10-06 15:22:43 | 
| Source code size: | 440 bytes / 28 lines | 
| Pitched / IR pitched: | No / No | 
| Views / Downloads: | 387 / 416 | 
| Referenced in: | [show references] |