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

35
LINES

< > BotCompany Repo | #1005301 // pcallF - synonym of pcallFunction

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (5033L/28K).

1  
static O pcallF(O f, O... args) {
2  
  ret pcallFunction(f, args);
3  
}
4  
5  
ifclass F0
6  
static <A> A pcallF(F0<A> f) {
7  
  pcall { ret f?!; } null;
8  
}
9  
endif
10  
11  
ifclass F1
12  
static <A, B> B pcallF(F1<A, B> f, A a) {
13  
  pcall { ret f?.get(a); } null;
14  
}
15  
endif
16  
17  
ifclass VF1
18  
static <A> void pcallF(VF1<A> f, A a) {
19  
  pcall {
20  
    f?.get(a);
21  
  }
22  
}
23  
endif
24  
25  
sO pcallF(Runnable r) {
26  
  pcall { r?.run(); } null;
27  
}
28  
29  
static <A> A pcallF(IF0<A> f) {
30  
  pcall { ret f?!; } null;
31  
}
32  
33  
static <A, B> B pcallF(IF1<A, B> f, A a) {
34  
  pcall { ret f?.get(a); } null;
35  
}

Author comment

Began life as a copy of #1003403

download  show line numbers  debug dex  old transpilations   

Travelled to 23 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, ekrmjmnbrukm, elmgxqgtpvxh, gwrvuhgaqvyk, ishqpsrjomds, jcllbfdqhrgy, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, onxytkatvevr, podlckwnjdmb, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, wnsclhtenguj, yanjaxplzisb

No comments. add comment

Snippet ID: #1005301
Snippet name: pcallF - synonym of pcallFunction
Eternal ID of this version: #1005301/11
Text MD5: 74aae813c14ba404ea28246a9f310eed
Transpilation MD5: a08f5a6bdc6f14192b9405bc25bb53eb
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-01-31 21:27:46
Source code size: 560 bytes / 35 lines
Pitched / IR pitched: No / No
Views / Downloads: 750 / 3395
Version history: 10 change(s)
Referenced in: [show references]