1 | static LS tok_remainingPhrases(LS tok, BitSet marked) { |
2 | new LS out; |
3 | for (int i = 1; i < l(tok); i += 2) { |
4 | if (getBit(marked, i)) continue; |
5 | int j = i+2; |
6 | while (j < l(tok) && !getBit(marked, j)) |
7 | j += 2; |
8 | out.add(joinSubList(tok, i, j-1)); |
9 | i = j; |
10 | } |
11 | ret out; |
12 | } |
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1022850 |
Snippet name: | tok_remainingPhrases |
Eternal ID of this version: | #1022850/1 |
Text MD5: | c571365cd7078215c78829eb5d170fe4 |
Author: | stefan |
Category: | javax / a.i. |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2019-04-10 17:32:00 |
Source code size: | 300 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 244 / 286 |
Referenced in: | [show references] |