<?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: Using select, reject, collect, inject and detect.</title>
	<atom:link href="http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/</link>
	<description>a blog about ruby on rails and the mac.</description>
	<lastBuildDate>Tue, 09 Dec 2008 05:00:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Matthew</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-404</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Tue, 09 Dec 2008 05:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-404</guid>
		<description>You&#039;re right Josh. Nice catch. Thanks.</description>
		<content:encoded><![CDATA[<p>You&#8217;re right Josh. Nice catch. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vojtech Salbaba</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-334</link>
		<dc:creator>Vojtech Salbaba</dc:creator>
		<pubDate>Thu, 27 Nov 2008 18:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-334</guid>
		<description>Nice work with the inject, thank you.</description>
		<content:encoded><![CDATA[<p>Nice work with the inject, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-401</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Tue, 01 Jul 2008 04:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-401</guid>
		<description>Simple yet good explanation :-)</description>
		<content:encoded><![CDATA[<p>Simple yet good explanation <img src='http://matthewcarriere.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-402</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Sat, 28 Jun 2008 04:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-402</guid>
		<description>very nicely explained, good job! simple and to the point.</description>
		<content:encoded><![CDATA[<p>very nicely explained, good job! simple and to the point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Breen</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-403</link>
		<dc:creator>Mike Breen</dc:creator>
		<pubDate>Fri, 27 Jun 2008 05:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-403</guid>
		<description>Nice post. Coming from .NET to Ruby I certainly went through this learning process when working with arrays.</description>
		<content:encoded><![CDATA[<p>Nice post. Coming from .NET to Ruby I certainly went through this learning process when working with arrays.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Aaron</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-408</link>
		<dc:creator>Sam Aaron</dc:creator>
		<pubDate>Wed, 25 Jun 2008 05:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-408</guid>
		<description>Very nicely written post, thanks. My only point is that I use the synonym map instead of collect, although I&#039;m not really sure why, and it might help people starting out to know that map and collect are actually the same thing. Keep it up!</description>
		<content:encoded><![CDATA[<p>Very nicely written post, thanks. My only point is that I use the synonym map instead of collect, although I&#8217;m not really sure why, and it might help people starting out to know that map and collect are actually the same thing. Keep it up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: curtis</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-407</link>
		<dc:creator>curtis</dc:creator>
		<pubDate>Wed, 25 Jun 2008 05:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-407</guid>
		<description>The for..in is functionally identical to for each. What would be really unforgivable is if someone did this in any case that an iterator based loop would do: a = [1,2,3,4] 1.upto(a.length-1) do &#124;i&#124; foo(a[i]) end</description>
		<content:encoded><![CDATA[<p>The for..in is functionally identical to for each. What would be really unforgivable is if someone did this in any case that an iterator based loop would do: a = [1,2,3,4] 1.upto(a.length-1) do |i| foo(a[i]) end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-406</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 25 Jun 2008 05:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-406</guid>
		<description>&lt;blockquote&gt;In this example the result is 20 because we assigned the accumulator an initial value of 20.&lt;/blockquote&gt;

I think you meant 10... Otherwise, great article!</description>
		<content:encoded><![CDATA[<blockquote><p>In this example the result is 20 because we assigned the accumulator an initial value of 20.</p></blockquote>
<p>I think you meant 10&#8230; Otherwise, great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Manges</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-405</link>
		<dc:creator>Dan Manges</dc:creator>
		<pubDate>Wed, 25 Jun 2008 05:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-405</guid>
		<description>I also use any? and all? fairly regularly. Although not as often as the methods you mentioned.</description>
		<content:encoded><![CDATA[<p>I also use any? and all? fairly regularly. Although not as often as the methods you mentioned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chad</title>
		<link>http://matthewcarriere.com/2008/06/23/using-select-reject-collect-inject-and-detect/comment-page-1/#comment-409</link>
		<dc:creator>chad</dc:creator>
		<pubDate>Tue, 24 Jun 2008 05:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://matthewcarriere.com/?p=26#comment-409</guid>
		<description>brilliant.</description>
		<content:encoded><![CDATA[<p>brilliant.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
