<?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: Ease of FatRat construction</title>
	<atom:link href="http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/feed/" rel="self" type="application/rss+xml" />
	<link>http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/</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/2011/10/18/ease-of-fatrat-construction/#comment-2642</link>
		<dc:creator><![CDATA[colomon]]></dc:creator>
		<pubDate>Wed, 19 Oct 2011 16:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=374#comment-2642</guid>
		<description><![CDATA[As far as I know, this certainly could be implemented by a macro once that functionality is available.  It might even work now in Rakudo, though it would be useless there at the moment as Rakudo does not support &lt;code&gt;FatRat&lt;/code&gt; yet.]]></description>
		<content:encoded><![CDATA[<p>As far as I know, this certainly could be implemented by a macro once that functionality is available.  It might even work now in Rakudo, though it would be useless there at the moment as Rakudo does not support <code>FatRat</code> yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SMR</title>
		<link>http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/#comment-2641</link>
		<dc:creator><![CDATA[SMR]]></dc:creator>
		<pubDate>Wed, 19 Oct 2011 16:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=374#comment-2641</guid>
		<description><![CDATA[A postfix F feels too much like the postfix for a float literal in other languages (like Java).  How about R instead?

Regarding colomon&#039;s comment, can a syntactic/literal postfix contain, say, a dot?   Would &quot;.R&quot; be easy to use?  Or would just make parsing insane?  .3333.R ?]]></description>
		<content:encoded><![CDATA[<p>A postfix F feels too much like the postfix for a float literal in other languages (like Java).  How about R instead?</p>
<p>Regarding colomon&#8217;s comment, can a syntactic/literal postfix contain, say, a dot?   Would &#8220;.R&#8221; be easy to use?  Or would just make parsing insane?  .3333.R ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: heir</title>
		<link>http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/#comment-2639</link>
		<dc:creator><![CDATA[heir]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 21:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=374#comment-2639</guid>
		<description><![CDATA[So… if not a postfix operator, why not a macro?]]></description>
		<content:encoded><![CDATA[<p>So… if not a postfix operator, why not a macro?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colomon</title>
		<link>http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/#comment-2638</link>
		<dc:creator><![CDATA[colomon]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 19:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=374#comment-2638</guid>
		<description><![CDATA[Choosing FatRat always needs to be explicit, IMO.  That&#039;s because once you&#039;ve got one FatRat, every downstream result of math operations is also a FatRat, and suddenly the implicit FatRat means you&#039;ve accidentally made all your math operations become hogs in time and space.]]></description>
		<content:encoded><![CDATA[<p>Choosing FatRat always needs to be explicit, IMO.  That&#8217;s because once you&#8217;ve got one FatRat, every downstream result of math operations is also a FatRat, and suddenly the implicit FatRat means you&#8217;ve accidentally made all your math operations become hogs in time and space.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moritz</title>
		<link>http://justrakudoit.wordpress.com/2011/10/18/ease-of-fatrat-construction/#comment-2637</link>
		<dc:creator><![CDATA[Moritz]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 19:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=374#comment-2637</guid>
		<description><![CDATA[I&#039;d propose to make Rat literals automatically chose FatRat if they would otherwise lose precision. 

You could write the constructor as

LFT.new(&#124;{ q =&gt; 1, r =&gt; 0, s =&gt; 0, t =&gt; 0}».FatRat});

Maybe some other literal form would be nice too, but I always felt that the type postfixes for number literals in C/C++ are the wrong approach (though I can&#039;t really explain why).]]></description>
		<content:encoded><![CDATA[<p>I&#8217;d propose to make Rat literals automatically chose FatRat if they would otherwise lose precision. </p>
<p>You could write the constructor as</p>
<p>LFT.new(|{ q =&gt; 1, r =&gt; 0, s =&gt; 0, t =&gt; 0}».FatRat});</p>
<p>Maybe some other literal form would be nice too, but I always felt that the type postfixes for number literals in C/C++ are the wrong approach (though I can&#8217;t really explain why).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
