Libraryless. Click here for Pure Java version (3827L/22K).
1 | // binary legacy syntax |
2 | sS formatFunctionCall(S fname, O... args) { |
3 | ret formatFunctionCall((O) fname, args); |
4 | } |
5 | |
6 | sS mapMethodLike formatFunctionCall(O fname, O... args) { |
7 | ret fname + "(" + joinWithComma(allToString(args)) + ")"; |
8 | } |
9 | |
10 | sS formatFunctionCall(S fname, Iterable args) { |
11 | ret formatFunctionCall((O) fname, args); |
12 | } |
13 | |
14 | sS formatFunctionCall(O fname, Iterable args) { |
15 | ret formatFunctionCall(fname, toObjectArray(args)); |
16 | } |
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1015644 |
Snippet name: | formatFunctionCall |
Eternal ID of this version: | #1015644/7 |
Text MD5: | afa81ac0b346ef5574234b184d77de63 |
Transpilation MD5: | 3e6820a435c3439704291d916632b431 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2021-10-16 00:50:29 |
Source code size: | 449 bytes / 16 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 559 / 717 |
Version history: | 6 change(s) |
Referenced in: | [show references] |