static L<S> ai_texts_multi(L<S> a, L<S> b, L<S> c) { new LinkedHashSet<S> l; if (!empty(a) &&!empty(b) && !empty(c)) for (S _a : a) for (S _b : b) for (S _c : c) l.addAll(ai_texts(_a, _b, _c)); ret cloneList(l); } static L<S> ai_texts_multi(S a, L<S> b, S c) { ret ai_texts_multi(ll(a), b, ll(c)); } static L<S> ai_texts_multi(L<S> a, L<S> b, S c) { ret ai_texts_multi(a, b, ll(c)); } static L<S> ai_texts_multi(S a, S b, L<S> c) { ret ai_texts_multi(ll(a), ll(b), c); }
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: | #1012596 |
Snippet name: | ai_texts_multi |
Eternal ID of this version: | #1012596/6 |
Text MD5: | 39e9a83d0a8c1ee78b0da6181955ffae |
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-13 20:06:43 |
Source code size: | 537 bytes / 21 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 476 / 509 |
Version history: | 5 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1012626 - has_multi #1012814 - ai_triples_multi #3000475 - Smart Bot's answer to: !fresh recentlyChangedSnippets() |