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

21
LINES

< > BotCompany Repo | #1018425 // ai_spreadCertainIndicesC - works on lists of code tokens

JavaX fragment (include)

1  
static LL<S> ai_spreadCertainIndicesC(L<S> tokPat, L<S> tokS, L<Int> indices) {
2  
  int extra = l(tokS)-l(tokPat);
3  
  if (extra < 0 || empty(indices)) ret emptyList();
4  
5  
  new LL<S> results;
6  
  for (L<Int> spread : allSpreads(extra, l(indices))) {
7  
    new L<S> tok;
8  
    int pos = 0, iSpread = 0, iIndices = 0;
9  
    for i over tokPat:
10  
      if (!eq(get(indices, iIndices), i))
11  
        tok.add(tokS.get(pos++));
12  
      else {
13  
        ++iIndices;
14  
        int take = spread.get(iSpread++);
15  
        tok.add(joinWithSpace(subList(tokS, pos, pos+take+1)));
16  
        pos += take+1;
17  
      }
18  
    results.add(tok);
19  
  }
20  
  ret results;
21  
}

Author comment

Began life as a copy of #1017287

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1018425
Snippet name: ai_spreadCertainIndicesC - works on lists of code tokens
Eternal ID of this version: #1018425/1
Text MD5: fa831745f9aa36a0b6d57fb7458870a1
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:19
Source code size: 636 bytes / 21 lines
Pitched / IR pitched: No / No
Views / Downloads: 305 / 339
Referenced in: [show references]