static bool has_verified_multi(L<S> a, L<S> b, L<S> c) { for (S _a : a) for (S _b : b) for (S _c : c) if (has_verified(_a, _b, _c)) true; false; } static bool has_verified_multi(S a, L<S> b, S c) { ret has_verified_multi(ll(a), b, ll(c)); } static bool has_verified_multi(L<S> a, L<S> b, S c) { ret has_verified_multi(a, b, ll(c)); } static bool has_verified_multi(L<S> a, S b, S c) { ret has_verified_multi(a, ll(b), ll(c)); } static bool has_verified_multi(L<S> a, S b, L<S> c) { ret has_verified_multi(a, ll(b), c); }
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: | 363 / 391 |
Version history: | 2 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |