1 | static L<S> splitAtJavaTokens(S s, S... splitTokens) {
|
2 | L<S> tok = javaTok(s); |
3 | new L<S> l; |
4 | int i = 1; |
5 | while (i < l(tok)) {
|
6 | int j = smartIndexOfAny(tok, i, splitTokens); |
7 | l.add(join(subList(tok, i, j-1))); |
8 | i = j+2; |
9 | } |
10 | ret l; |
11 | } |
Began life as a copy of #1002271
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1012192 |
| Snippet name: | splitAtJavaTokens - allows each of the tokens to be a separator |
| Eternal ID of this version: | #1012192/1 |
| Text MD5: | 38e30ab9fe02e3fe217c5e2ad3bd2f9b |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2017-11-23 18:23:49 |
| Source code size: | 256 bytes / 11 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 628 / 637 |
| Referenced in: | [show references] |