<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 29, 2015, at 4:29 PM, Craig Cruden &lt;<a href="mailto:ccruden@novafore.com" class="">ccruden@novafore.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class="">Could you define what you mean by “stream support?” &nbsp;Whatever it is, I doubt simply adding an infinitely-repeating sequence type is enough to get you there.</blockquote></div><div class=""><br class=""></div>I can guess — but it is only a guess. &nbsp;<div class=""><br class=""></div><div class="">A function defines an infinite “set” of values (like the digits of pi). &nbsp;A stream is just a special type of traversable (lazy) which does not evaluate until asked for the next in a sequence of the set. &nbsp;A function defined in a stream will thus only continue calculating next digits when asked for them. &nbsp;Similarly you could have a collection (head/tail) and you ask for the head and you get it, but the rest (tail) is just the tail as a whole and none of the values in it are really defined until you traverse down to the next head of the rest of the tail. &nbsp;Once it is evaluated it is stored in memory for future evaluations. &nbsp;If you were to fully evaluate the function it would never finish, and if it were to finish — you would probably run out of memory.</div></div></div></blockquote><div><br class=""></div>Yes, I understand the usual concept of a “stream," but it doesn’t help me understand what &nbsp;stream *support* entails.</div><div><br class=""></div><div>-Dave</div><div><br class=""></div></body></html>