<?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: Day 14 &#8211; nextsame and its cousins</title>
	<atom:link href="http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/feed/" rel="self" type="application/rss+xml" />
	<link>http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/</link>
	<description>Something cool about Perl 6 every day</description>
	<lastBuildDate>Sun, 03 Feb 2013 05:15:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: carl</title>
		<link>http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/#comment-913</link>
		<dc:creator><![CDATA[carl]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 20:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=619#comment-913</guid>
		<description><![CDATA[Yes, we reply to non-fully-formed questions, too!

&lt;pre&gt;
multi foo(Any $x) { say &quot;general&quot; };
multi foo(Int $x) { say &quot;specific&quot;; nextwith(&quot;&quot;) };
foo(42);
&lt;/pre&gt;

The above code will print &lt;code&gt;specific&lt;/code&gt; and then &lt;code&gt;general&lt;/code&gt;. Works in Rakudo today.]]></description>
		<content:encoded><![CDATA[<p>Yes, we reply to non-fully-formed questions, too!</p>
<pre>
multi foo(Any $x) { say "general" };
multi foo(Int $x) { say "specific"; nextwith("") };
foo(42);
</pre>
<p>The above code will print <code>specific</code> and then <code>general</code>. Works in Rakudo today.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joek</title>
		<link>http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/#comment-912</link>
		<dc:creator><![CDATA[Joek]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 18:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=619#comment-912</guid>
		<description><![CDATA[does any example for 
nextwith and callwith]]></description>
		<content:encoded><![CDATA[<p>does any example for<br />
nextwith and callwith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/#comment-545</link>
		<dc:creator><![CDATA[carl]]></dc:creator>
		<pubDate>Thu, 16 Dec 2010 08:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=619#comment-545</guid>
		<description><![CDATA[&quot;Module inheritance&quot; is a bit of an oxymoron, since inheritance is a relation between classes, and becomes expressed through the dispatching of methods. A module of subs is twice removed from such action.

I tried the above in Rakudo. It doesn&#039;t work, but to my surprise the &#039;module B is A&#039;  declaration didn&#039;t throw a Big Fat Error. I think it should (to catch misunderstandings like this early), so I submitted &lt;a href=&quot;http://rt.perl.org/rt3/Ticket/Display.html?id=80856&quot; rel=&quot;nofollow&quot;&gt;a rakudobug&lt;/a&gt; about it.]]></description>
		<content:encoded><![CDATA[<p>&#8220;Module inheritance&#8221; is a bit of an oxymoron, since inheritance is a relation between classes, and becomes expressed through the dispatching of methods. A module of subs is twice removed from such action.</p>
<p>I tried the above in Rakudo. It doesn&#8217;t work, but to my surprise the &#8216;module B is A&#8217;  declaration didn&#8217;t throw a Big Fat Error. I think it should (to catch misunderstandings like this early), so I submitted <a href="http://rt.perl.org/rt3/Ticket/Display.html?id=80856" rel="nofollow">a rakudobug</a> about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://perl6advent.wordpress.com/2010/12/14/day-14-nextsame-and-its-cousins/#comment-542</link>
		<dc:creator><![CDATA[Jake]]></dc:creator>
		<pubDate>Wed, 15 Dec 2010 23:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=619#comment-542</guid>
		<description><![CDATA[Im wondering if there is (or if there should be) a way of using nextsame in a functional way (other than with multisubs) with module inheritance. Say, if you have two modules:

    module A {
        sub foo {say &quot;A::foo&quot;}
    }
    
    module B is A {
        sub foo {say &quot;B::foo&quot;; nextsame}
    }

Or is module inheritance like this not possible?]]></description>
		<content:encoded><![CDATA[<p>Im wondering if there is (or if there should be) a way of using nextsame in a functional way (other than with multisubs) with module inheritance. Say, if you have two modules:</p>
<p>    module A {<br />
        sub foo {say &#8220;A::foo&#8221;}<br />
    }</p>
<p>    module B is A {<br />
        sub foo {say &#8220;B::foo&#8221;; nextsame}<br />
    }</p>
<p>Or is module inheritance like this not possible?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
