static <A> IterableIterator<A> iteratorFromFunction_f0(final F0<A> f) { class IFF2 extends IterableIterator<A> { A a; bool done; public bool hasNext() { getNext(); ret !done; } public A next() { getNext(); if (done) fail(); A _a = a; a = null; ret _a; } void getNext() { if (done || a != null) ret; a = f.get(); done = a == null; } }; ret new IFF2; }
Began life as a copy of #1006726
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: | #1012440 |
| Snippet name: | iteratorFromFunction_f0 - ends on null |
| Eternal ID of this version: | #1012440/3 |
| Text MD5: | 51477e747893ff2cdcb5e12b0ada6ef2 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2019-08-28 19:40:51 |
| Source code size: | 488 bytes / 26 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 770 / 771 |
| Version history: | 2 change(s) |
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1012671 - iteratorFromFunction_withEndMarker_f0 #1017244 - iteratorFromFunction_f0_autoCloseable - end on null #1024889 - iteratorFromFunction_if0 - ends on null |