<?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: Ruby Blocks 101</title>
	<atom:link href="http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/feed/" rel="self" type="application/rss+xml" />
	<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/</link>
	<description>Ruby newbie view on the web development using Ruby on Rails</description>
	<lastBuildDate>Mon, 16 Nov 2009 03:44:45 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Learning to read Ruby on Rails code &#8211; a cheatsheet for absolute beginners &#171; All About Ruby</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10585</link>
		<dc:creator>Learning to read Ruby on Rails code &#8211; a cheatsheet for absolute beginners &#171; All About Ruby</dc:creator>
		<pubDate>Sun, 28 Jun 2009 09:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10585</guid>
		<description>[...] 12. curly brackets { } &#8211; these are most of the time an indicator of a block. More on blocks here. [...]</description>
		<content:encoded><![CDATA[<p>[...] 12. curly brackets { } &#8211; these are most of the time an indicator of a block. More on blocks here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Gardner</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10563</link>
		<dc:creator>James Gardner</dc:creator>
		<pubDate>Thu, 22 Jan 2009 09:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10563</guid>
		<description>I agree with Matt. Some practical application of where blocks might be used would be really useful. Though by no great stretch of the imagination I can easily think of some myself just from reading your article.

Thanks very much.</description>
		<content:encoded><![CDATA[<p>I agree with Matt. Some practical application of where blocks might be used would be really useful. Though by no great stretch of the imagination I can easily think of some myself just from reading your article.</p>
<p>Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10557</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Wed, 03 Dec 2008 22:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10557</guid>
		<description>Hi,

It might be useful to include a &#039;real world&#039; example of how this sort of thing can be used.  I understand the concept but can&#039;t immediately see why I would want to do it (poor imagination on my part perhaps.)

matt</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It might be useful to include a &#8216;real world&#8217; example of how this sort of thing can be used.  I understand the concept but can&#8217;t immediately see why I would want to do it (poor imagination on my part perhaps.)</p>
<p>matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10520</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 16 Jun 2008 17:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10520</guid>
		<description>Blocks are essentially lambda expressions, you&#039;ll have the pleasure of using higher-order functions in any functional language you touch.</description>
		<content:encoded><![CDATA[<p>Blocks are essentially lambda expressions, you&#8217;ll have the pleasure of using higher-order functions in any functional language you touch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-9354</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Fri, 14 Dec 2007 23:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-9354</guid>
		<description>Actually functors are the C/C++ equivalent and not iterators.  It isn&#039;t possible to customize the logic executed per iteration using STL iterators alone.  You have to combine iterators with functors to get closure/block behavior.  (And, in C#, anonymous delegates do the job).</description>
		<content:encoded><![CDATA[<p>Actually functors are the C/C++ equivalent and not iterators.  It isn&#8217;t possible to customize the logic executed per iteration using STL iterators alone.  You have to combine iterators with functors to get closure/block behavior.  (And, in C#, anonymous delegates do the job).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-9190</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Tue, 04 Dec 2007 00:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-9190</guid>
		<description>Hey, fantastic job.  I now actually understand how to make methods that use blocks.

However, damn you at the same time.  I have started rewriting my methods now to take advantage of this new found knowledge :)

Seriously though, thanks.</description>
		<content:encoded><![CDATA[<p>Hey, fantastic job.  I now actually understand how to make methods that use blocks.</p>
<p>However, damn you at the same time.  I have started rewriting my methods now to take advantage of this new found knowledge <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Seriously though, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: van</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-7345</link>
		<dc:creator>van</dc:creator>
		<pubDate>Sun, 16 Sep 2007 01:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-7345</guid>
		<description>Thank you very much.e</description>
		<content:encoded><![CDATA[<p>Thank you very much.e</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My Blog &#187; Blog Archive &#187; Ruby Blocks</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6951</link>
		<dc:creator>My Blog &#187; Blog Archive &#187; Ruby Blocks</dc:creator>
		<pubDate>Thu, 30 Aug 2007 18:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6951</guid>
		<description>[...] Blog post Sample&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Blog post Sample&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Douglas</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6950</link>
		<dc:creator>Douglas</dc:creator>
		<pubDate>Thu, 30 Aug 2007 18:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6950</guid>
		<description>This one also helped... http://www.artima.com/intv/closures.html
Matz describes it as a nameless function passed into another function.</description>
		<content:encoded><![CDATA[<p>This one also helped&#8230; <a href="http://www.artima.com/intv/closures.html" rel="nofollow">http://www.artima.com/intv/closures.html</a><br />
Matz describes it as a nameless function passed into another function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Douglas</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6949</link>
		<dc:creator>Douglas</dc:creator>
		<pubDate>Thu, 30 Aug 2007 18:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-6949</guid>
		<description>Yes!!  Finally an explanation I understand.  I have struggled with this concept for a while.  Thank you.</description>
		<content:encoded><![CDATA[<p>Yes!!  Finally an explanation I understand.  I have struggled with this concept for a while.  Thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
