static LS tok_markedPhrases(LS tok, BitSet marked) { new LS out; for (int i = 1; i < l(tok); i += 2) { if (!getBit(marked, i)) continue; int j = i+2; while (j < l(tok) && getBit(marked, j)) j += 2; out.add(joinSubList(tok, i, j-1)); i = j; } ret out; }
Began life as a copy of #1022850
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: | #1022851 |
| Snippet name: | tok_markedPhrases |
| Eternal ID of this version: | #1022851/1 |
| Text MD5: | 7851d193f00ebd9421ccb8027d522891 |
| 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:33:20 |
| Source code size: | 297 bytes / 12 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 436 / 485 |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |