<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Understanding Scala Streams through Fibonacci</title>
	<atom:link href="http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/</link>
	<description>Vim... and stuff</description>
	<lastBuildDate>Sat, 11 May 2013 19:29:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Brent</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-126374</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Wed, 08 May 2013 07:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-126374</guid>
		<description><![CDATA[@Jed Nice solution, but didn&#039;t you mean &quot;loop(0, 1)&quot;?   -- in order to get the Fibonacci sequence 0, 1, 1, 2, ...]]></description>
		<content:encoded><![CDATA[<p>@Jed Nice solution, but didn&#8217;t you mean &#8220;loop(0, 1)&#8221;?   &#8212; in order to get the Fibonacci sequence 0, 1, 1, 2, &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Staveley</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-100486</link>
		<dc:creator>Alex Staveley</dc:creator>
		<pubDate>Thu, 17 Jan 2013 21:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-100486</guid>
		<description><![CDATA[Ha Ha. I love the asinine bit.]]></description>
		<content:encoded><![CDATA[<p>Ha Ha. I love the asinine bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scala Snippets &#171; Stray Thoughts</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-77489</link>
		<dc:creator>Scala Snippets &#171; Stray Thoughts</dc:creator>
		<pubDate>Sat, 27 Oct 2012 07:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-77489</guid>
		<description><![CDATA[[...] you can make a more efficient version of this kind of Stream by avoiding the zip, like [...]]]></description>
		<content:encoded><![CDATA[<p>[...] you can make a more efficient version of this kind of Stream by avoiding the zip, like [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Wyatt</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-55884</link>
		<dc:creator>Derek Wyatt</dc:creator>
		<pubDate>Fri, 13 Apr 2012 20:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-55884</guid>
		<description><![CDATA[Go for it.]]></description>
		<content:encoded><![CDATA[<p>Go for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Peszek</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-55870</link>
		<dc:creator>Robert Peszek</dc:creator>
		<pubDate>Fri, 13 Apr 2012 18:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-55870</guid>
		<description><![CDATA[Very nice, I hope you do not mind if I link to it
Robert]]></description>
		<content:encoded><![CDATA[<p>Very nice, I hope you do not mind if I link to it<br />
Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Wyatt</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-25352</link>
		<dc:creator>Derek Wyatt</dc:creator>
		<pubDate>Tue, 16 Aug 2011 09:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-25352</guid>
		<description><![CDATA[Nice.  Thanks Jed]]></description>
		<content:encoded><![CDATA[<p>Nice.  Thanks Jed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jed Wesley-Smith</title>
		<link>http://www.derekwyatt.org/2011/07/29/understanding-scala-streams-through-fibonacci/comment-page-1/#comment-25341</link>
		<dc:creator>Jed Wesley-Smith</dc:creator>
		<pubDate>Tue, 16 Aug 2011 06:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekwyatt.org/?p=338#comment-25341</guid>
		<description><![CDATA[very nice explanation.

it is worth noting though that a simpler and leaner (in terms of objects created) implementation for fib is:

lazy val fib: Stream[Int] = {
  def loop(h: Int, n: Int): Stream[Int] = h #:: loop(n, h + n)
  loop(1, 1)
}

but yeah, this stuff rocks eh?]]></description>
		<content:encoded><![CDATA[<p>very nice explanation.</p>
<p>it is worth noting though that a simpler and leaner (in terms of objects created) implementation for fib is:</p>
<p>lazy val fib: Stream[Int] = {<br />
  def loop(h: Int, n: Int): Stream[Int] = h #:: loop(n, h + n)<br />
  loop(1, 1)<br />
}</p>
<p>but yeah, this stuff rocks eh?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
