<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Series, Memoization, and Limits</title>
	<atom:link href="http://justrakudoit.wordpress.com/2010/09/03/series-memoization-and-limits/feed/" rel="self" type="application/rss+xml" />
	<link>http://justrakudoit.wordpress.com/2010/09/03/series-memoization-and-limits/</link>
	<description>I Never Metaop I Didn&#039;t Like</description>
	<lastBuildDate>Thu, 07 Mar 2013 12:58:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: colomon</title>
		<link>http://justrakudoit.wordpress.com/2010/09/03/series-memoization-and-limits/#comment-2403</link>
		<dc:creator><![CDATA[colomon]]></dc:creator>
		<pubDate>Fri, 03 Sep 2010 20:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=170#comment-2403</guid>
		<description><![CDATA[I believe you are correct that this should work.  But it definitely doesn&#039;t in Rakudo at the moment.]]></description>
		<content:encoded><![CDATA[<p>I believe you are correct that this should work.  But it definitely doesn&#8217;t in Rakudo at the moment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eevee</title>
		<link>http://justrakudoit.wordpress.com/2010/09/03/series-memoization-and-limits/#comment-2402</link>
		<dc:creator><![CDATA[Eevee]]></dc:creator>
		<pubDate>Fri, 03 Sep 2010 19:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=170#comment-2402</guid>
		<description><![CDATA[It seems intuitive to me that this should work:

my @fib := (0, 1, -&gt; $a, $b { $a + $b } ... *);
my @fib_capped := (@fib ... 900);

But it appears not to be the case.  I think the ... operator is trying to eagerly consume @fib.  Perhaps it should not?]]></description>
		<content:encoded><![CDATA[<p>It seems intuitive to me that this should work:</p>
<p>my @fib := (0, 1, -&gt; $a, $b { $a + $b } &#8230; *);<br />
my @fib_capped := (@fib &#8230; 900);</p>
<p>But it appears not to be the case.  I think the &#8230; operator is trying to eagerly consume @fib.  Perhaps it should not?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Michaud</title>
		<link>http://justrakudoit.wordpress.com/2010/09/03/series-memoization-and-limits/#comment-2401</link>
		<dc:creator><![CDATA[Patrick Michaud]]></dc:creator>
		<pubDate>Fri, 03 Sep 2010 18:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=170#comment-2401</guid>
		<description><![CDATA[To stop a grep or map, use last:

&lt;pre&gt;
  my @F-low := @Fibonacci.map( { last if $_ &gt; 900; $_ } );
  say @F-low[10];
  say @F-low[20];  # no longer infinite
&lt;/pre&gt;

Pm]]></description>
		<content:encoded><![CDATA[<p>To stop a grep or map, use last:</p>
<pre>
  my @F-low := @Fibonacci.map( { last if $_ &gt; 900; $_ } );
  say @F-low[10];
  say @F-low[20];  # no longer infinite
</pre>
<p>Pm</p>
]]></content:encoded>
	</item>
</channel>
</rss>
