1 | static bool has_verified_multi(L<S> a, L<S> b, L<S> c) { |
2 | for (S _a : a) |
3 | for (S _b : b) |
4 | for (S _c : c) |
5 | if (has_verified(_a, _b, _c)) true; |
6 | false; |
7 | } |
8 | |
9 | static bool has_verified_multi(S a, L<S> b, S c) { |
10 | ret has_verified_multi(ll(a), b, ll(c)); |
11 | } |
12 | |
13 | static bool has_verified_multi(L<S> a, L<S> b, S c) { |
14 | ret has_verified_multi(a, b, ll(c)); |
15 | } |
16 | |
17 | static bool has_verified_multi(L<S> a, S b, S c) { |
18 | ret has_verified_multi(a, ll(b), ll(c)); |
19 | } |
20 | |
21 | static bool has_verified_multi(L<S> a, S b, L<S> c) { |
22 | ret has_verified_multi(a, ll(b), c); |
23 | } |
Began life as a copy of #1012626
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: | #1012902 |
Snippet name: | has_verified_multi |
Eternal ID of this version: | #1012902/3 |
Text MD5: | 48d98149e79529685b0e65afeada6b8a |
Author: | stefan |
Category: | javax / a.i. |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-12-16 13:09:14 |
Source code size: | 576 bytes / 23 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 364 / 392 |
Version history: | 2 change(s) |
Referenced in: | [show references] |