<?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: Groovy Elvis Operator?:</title>
	<atom:link href="http://colinharrington.net/blog/2008/10/groovy-elvis-operator/feed/" rel="self" type="application/rss+xml" />
	<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/</link>
	<description>Technologist, Consultant, Software Engineer, Entrepreneur and Musician</description>
	<lastBuildDate>Mon, 23 Jan 2012 05:25:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Groovy Elvis Operator?: - Grails Elvis Operator</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3959</link>
		<dc:creator>Groovy Elvis Operator?: - Grails Elvis Operator</dc:creator>
		<pubDate>Thu, 23 Sep 2010 14:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3959</guid>
		<description>[...] See the original for Detail        &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] See the original for Detail        &nbsp; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Groovy to See the Future of Java &#124; PHP Hosts</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3755</link>
		<dc:creator>Using Groovy to See the Future of Java &#124; PHP Hosts</dc:creator>
		<pubDate>Thu, 06 Aug 2009 06:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3755</guid>
		<description>[...] traditional Java without ternary, traditional Java with ternary, and the Groovy Elvis operator. The Elvis operator makes the ternary operator even more concise. Like the safe navigation operator, this can be handy [...]</description>
		<content:encoded><![CDATA[<p>[...] traditional Java without ternary, traditional Java with ternary, and the Groovy Elvis operator. The Elvis operator makes the ternary operator even more concise. Like the safe navigation operator, this can be handy [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [digital:meditation] &#187; JUG Saxony 07/2009: Groovy</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3746</link>
		<dc:creator>[digital:meditation] &#187; JUG Saxony 07/2009: Groovy</dc:creator>
		<pubDate>Fri, 17 Jul 2009 08:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3746</guid>
		<description>[...] the second insight of the evening was getting to know Groovys &#8220;Elvis Operator&#8221; which, asides being really helpful at times, in terms of its naming surely once again demonstrates [...]</description>
		<content:encoded><![CDATA[<p>[...] the second insight of the evening was getting to know Groovys &#8220;Elvis Operator&#8221; which, asides being really helpful at times, in terms of its naming surely once again demonstrates [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3740</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Thu, 02 Jul 2009 06:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3740</guid>
		<description>Alex, 

You are right on that the Groovy Ternary operator can do so much more than the Java one!!  My words were to show the basic &lt;a href=&quot;http://groovy.codehaus.org/Logical+Branching&quot; rel=&quot;nofollow&quot;&gt;logical branching&lt;/a&gt; in Groovy is similar to Java but thank you for Pointing it out to other readers!</description>
		<content:encoded><![CDATA[<p>Alex, </p>
<p>You are right on that the Groovy Ternary operator can do so much more than the Java one!!  My words were to show the basic <a href="http://groovy.codehaus.org/Logical+Branching" rel="nofollow">logical branching</a> in Groovy is similar to Java but thank you for Pointing it out to other readers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Shneyderman</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3737</link>
		<dc:creator>Alex Shneyderman</dc:creator>
		<pubDate>Wed, 24 Jun 2009 18:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3737</guid>
		<description>Your statement &quot;The syntax and logic for the ternary operator is the same in Groovy as it is in Java;  (Condition) ? Value-If-True : Value-If-False   Iâ€™m not going to get into a lesson on the ternary operator and you can certainly read more here.&quot;

is not correct. Groovy&#039;s ternary operator is a lot more handy. for example you can not do this in Java:

debug ? (println &quot;debug is on&quot;) : (println &quot;debug is off&quot;)

you can not do this in Java. In Java you would have to revert to if/else.</description>
		<content:encoded><![CDATA[<p>Your statement &#8220;The syntax and logic for the ternary operator is the same in Groovy as it is in Java;  (Condition) ? Value-If-True : Value-If-False   Iâ€™m not going to get into a lesson on the ternary operator and you can certainly read more here.&#8221;</p>
<p>is not correct. Groovy&#8217;s ternary operator is a lot more handy. for example you can not do this in Java:</p>
<p>debug ? (println &#8220;debug is on&#8221;) : (println &#8220;debug is off&#8221;)</p>
<p>you can not do this in Java. In Java you would have to revert to if/else.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Olsen</title>
		<link>http://colinharrington.net/blog/2008/10/groovy-elvis-operator/comment-page-1/#comment-3736</link>
		<dc:creator>Steve Olsen</dc:creator>
		<pubDate>Wed, 24 Jun 2009 18:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://colinharrington.net/blog/index.php/2008/10/30/groovy-elvis-operator/#comment-3736</guid>
		<description>So is long-eyed Elvis operator implemented? Looks like a cool idea to me!</description>
		<content:encoded><![CDATA[<p>So is long-eyed Elvis operator implemented? Looks like a cool idea to me!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

