<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 31, 2015, at 3:20 PM, Kevin Ballard &lt;<a href="mailto:kevin@sb.org" class="">kevin@sb.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class="">


<title class=""></title>

<div class=""><div class="">On Thu, Dec 31, 2015, at 02:03 PM, Dave Abrahams wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">&nbsp;</div>
<div class=""><blockquote type="cite" class=""><div class="">On Dec 31, 2015, at 1:58 PM, Kevin Ballard &lt;<a href="mailto:kevin@sb.org" class="">kevin@sb.org</a>&gt; wrote:<br class=""></div>
<div class="">&nbsp;</div>
<div class=""><div class=""><div class="">Good idea, though I'd probably call it PeekSequence because it would only buffer a single element (and BufferedSequence sounds like it's got an arbitrary-sized buffer). Perhaps more useful would be the associated PeekGenerator, because peek() is a useful thing to have when writing custom generator-using code.<br class=""></div>
</div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">The size of the buffer is an implementation detail, and I don’t find “peek” descriptive.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">There's precedent for the name "peek". More importantly, that's the name you'd use for the generator method; the sequence would still have the "first" property.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">My concern with making the size of the buffer be an implementation detail is I'd rather not add array allocation if I only need a single element of lookahead. I suppose it could have an `enum { OneElement(Element), Buffer([Element]) }` as the storage, but that still does end up being a little bit of extra work on every call to next().<br class=""></div>
<div class="">&nbsp;</div>
<blockquote type="cite" class=""><div class=""><blockquote type="cite" class=""><div class=""><div class="">I'll write up a more detailed email with a proposed design in a minute.<br class=""></div>
<div class="">&nbsp;</div>
<blockquote type="cite" class=""><div class=""><div class="">Another related adapter I’d like to add is a model of CollectionType that is backed by a sequence and lazily populated in fixed-sized chunks.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Also a good idea. Although really it could just be backed by a ContiguousArray, those things already grow in chunks. I'll write up a design for that too.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Not unless you want to keep the buffers alive longer than necessary. &nbsp;Imagine you’re parsing a long stream with some amount of lookahead. &nbsp;You can scan this collection by slicing it and the buffer segments that are no longer in use will be automatically collected.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Ah, I didn't realize you wanted to collect chunks that haven't been used lately. But I don't think that's possible;</div></div></div></blockquote></div><div><blockquote type="cite" class=""><div class=""><div class=""><div class=""> since it's backed by a sequence, the chunks MUST be generated in order; there's no way to skip ahead, and no way to generate an older chunk that you've thrown away. </div></div></div></blockquote><div><br class=""></div><div>Right…?</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">But since it's a CollectionType, you need to preserve the ability to access older values. </div></div></div></blockquote><div><br class=""></div>Not once you replace it with a slice of itself.</div><div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">So the only way to actually have this be a CollectionType is to buffer the entire sequence up to the highest-accessed index.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">Of course, your use-case of processing a stream with some amount of lookahead and throwing away the old data actually sounds like something a "BufferedSequence" might provide. Or actually, a "BufferedGenerator", because the only way to process a sequence is with a generator and so all a "BufferedSequence" would really do is just give you a "BufferedGenerator" from its generate() method.<br class=""></div>
</div></div></blockquote><br class=""></div><div>I’m quite certain this is buildable. &nbsp;I’ve got my hands full at the moment or I’d create a prototype…</div><br class=""><div class="">
-Dave

</div>
<br class=""></body></html>