static L<S> tok_combineSquareBrackets_keep(LS tok) { new L<S> l; for i over tok: { S t = tok.get(i); if (odd(i) && eq(t, "[")) { int j = findEndOfBracketPart2(tok, i); l.add(joinSubList(tok, i, j)); i = j-1; } else l.add(t); } ret l; }
Began life as a copy of #1021307
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: | #1021309 |
| Snippet name: | tok_combineSquareBrackets_keep |
| Eternal ID of this version: | #1021309/1 |
| Text MD5: | a794957bae4415f66e5fe4e3283b3538 |
| Author: | stefan |
| Category: | javax / parsing |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2019-02-08 14:02:08 |
| Source code size: | 291 bytes / 13 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 437 / 469 |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |