static LL<S> ai_spreadCertainIndices(L<S> tokPat, L<S> tokS, L<Int> indices) { int extra = l(tokS)-l(tokPat); if (extra < 0 || empty(indices)) ret emptyList(); new LL<S> results; for (L<Int> spread : allSpreads(extra, l(indices))) { new L<S> tok; int pos = 0, iSpread = 0, iIndices = 0; for i over tokPat: if (!eq(get(indices, iIndices), i)) tok.add(tokS.get(pos++)); else { ++iIndices; int take = spread.get(iSpread++); tok.add(join(subList(tokS, pos, pos+take+1))); pos += take+1; } results.add(tok); } ret results; }
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1017287 |
Snippet name: | ai_spreadCertainIndices - works on CNC |
Eternal ID of this version: | #1017287/7 |
Text MD5: | 45b019d4638edc485cd23da8a9a07084 |
Author: | stefan |
Category: | javax / parsing |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-09-30 02:26:40 |
Source code size: | 626 bytes / 21 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 325 / 366 |
Version history: | 6 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1017289 - ai_spreadAllAngleVars #1018425 - ai_spreadCertainIndicesC - works on lists of code tokens #1021071 - ai_spreadCertainIndices_2 - works on CNC, fixing the CNC logic |