<?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: Native libraries, native objects</title>
	<atom:link href="http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/feed/" rel="self" type="application/rss+xml" />
	<link>http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/</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: ttjjss</title>
		<link>http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/#comment-1134</link>
		<dc:creator><![CDATA[ttjjss]]></dc:creator>
		<pubDate>Sat, 24 Dec 2011 10:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=1037#comment-1134</guid>
		<description><![CDATA[Yeah, I forgot to mention you need to import the NativeCall module to do that (it&#039;ll probably live in core Rakudo one day). I&#039;ll update the post to mention that, thanks!]]></description>
		<content:encoded><![CDATA[<p>Yeah, I forgot to mention you need to import the NativeCall module to do that (it&#8217;ll probably live in core Rakudo one day). I&#8217;ll update the post to mention that, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: heir</title>
		<link>http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/#comment-1133</link>
		<dc:creator><![CDATA[heir]]></dc:creator>
		<pubDate>Sat, 24 Dec 2011 09:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=1037#comment-1133</guid>
		<description><![CDATA[Trying to run the first code snippet using a current rakudo from git, I get:

===SORRY!===
No applicable candidates found to dispatch to for &#039;trait_mod:&#039;. Available candidates are:
:(Attribute $attr, Any $rw)
:(Attribute $attr, Any $readonly)
:(Attribute $attr, Any $box_target)
:(Routine $r, Any $rw)
:(Routine $r, Any $default)
:(Routine $r, Any $info, Any $inlinable)
:(Parameter $param, Any $readonly)
:(Parameter $param, Any $rw)
:(Parameter $param, Any $copy)
:(Parameter $param, Any $required)
:(Routine $r, Any $export)
:(Routine $r, Any $hidden_from_backtrace)
:(Mu $type, Any $rw)
:(Mu $type, Any $size, Any $nativesize)
:(Mu $type, Any $export)
:(Mu $docee, Any $doc, Any $docs)
:(Mu $docee, Any $doc, Any $docs)
:(Mu $child, Mu $parent)]]></description>
		<content:encoded><![CDATA[<p>Trying to run the first code snippet using a current rakudo from git, I get:</p>
<p>===SORRY!===<br />
No applicable candidates found to dispatch to for &#8216;trait_mod:&#8217;. Available candidates are:<br />
:(Attribute $attr, Any $rw)<br />
:(Attribute $attr, Any $readonly)<br />
:(Attribute $attr, Any $box_target)<br />
:(Routine $r, Any $rw)<br />
:(Routine $r, Any $default)<br />
:(Routine $r, Any $info, Any $inlinable)<br />
:(Parameter $param, Any $readonly)<br />
:(Parameter $param, Any $rw)<br />
:(Parameter $param, Any $copy)<br />
:(Parameter $param, Any $required)<br />
:(Routine $r, Any $export)<br />
:(Routine $r, Any $hidden_from_backtrace)<br />
:(Mu $type, Any $rw)<br />
:(Mu $type, Any $size, Any $nativesize)<br />
:(Mu $type, Any $export)<br />
:(Mu $docee, Any $doc, Any $docs)<br />
:(Mu $docee, Any $doc, Any $docs)<br />
:(Mu $child, Mu $parent)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moritz</title>
		<link>http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/#comment-1100</link>
		<dc:creator><![CDATA[Moritz]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 05:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=1037#comment-1100</guid>
		<description><![CDATA[The data types are all in the signature of the Perl 6 subroutine. For example  &lt;code&gt;sub mpd_connection_new(Str $host, Int $port)         returns Connection&lt;/code&gt; boils down to a C function &lt;code&gt;void* mpd_connection_new(char*, int)&lt;/code&gt;. No additional header file needed.]]></description>
		<content:encoded><![CDATA[<p>The data types are all in the signature of the Perl 6 subroutine. For example  <code>sub mpd_connection_new(Str $host, Int $port)         returns Connection</code> boils down to a C function <code>void* mpd_connection_new(char*, int)</code>. No additional header file needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://perl6advent.wordpress.com/2011/12/21/native-libraries-native-objects/#comment-1098</link>
		<dc:creator><![CDATA[Daniel]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 01:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=1037#comment-1098</guid>
		<description><![CDATA[How do Perl know the &quot;true&quot; datatype from the .so file? Does it need a .h file or something?]]></description>
		<content:encoded><![CDATA[<p>How do Perl know the &#8220;true&#8221; datatype from the .so file? Does it need a .h file or something?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
