<?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: Autovivification bit me today</title>
	<atom:link href="http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/</link>
	<description>... notes, thoughts, rants, and randomness.</description>
	<lastBuildDate>Fri, 05 Mar 2010 20:49:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: b</title>
		<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/comment-page-1/#comment-27</link>
		<dc:creator>b</dc:creator>
		<pubDate>Thu, 28 May 2009 01:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laufeyjarson.com/?p=25#comment-27</guid>
		<description>I like 

  return if $hashref and exists $hashref-&gt;{something};

much better than counting the keys.</description>
		<content:encoded><![CDATA[<p>I like </p>
<p>  return if $hashref and exists $hashref-&gt;{something};</p>
<p>much better than counting the keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lwsitu</title>
		<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/comment-page-1/#comment-26</link>
		<dc:creator>lwsitu</dc:creator>
		<pubDate>Wed, 27 May 2009 23:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laufeyjarson.com/?p=25#comment-26</guid>
		<description>you don&#039;t need to use scalar keys, just using a hash in scalar context would work as well</description>
		<content:encoded><![CDATA[<p>you don&#8217;t need to use scalar keys, just using a hash in scalar context would work as well</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laufeyjarson</title>
		<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/comment-page-1/#comment-25</link>
		<dc:creator>Laufeyjarson</dc:creator>
		<pubDate>Wed, 27 May 2009 20:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laufeyjarson.com/?p=25#comment-25</guid>
		<description>I was following the advice from http://www.perlmonks.org/?node_id=173677 which points out that not all tied hashes behave properly in those situations.

In my specific case, it would have been fine, but in the general case it might not always work.</description>
		<content:encoded><![CDATA[<p>I was following the advice from <a href="http://www.perlmonks.org/?node_id=173677" rel="nofollow">http://www.perlmonks.org/?node_id=173677</a> which points out that not all tied hashes behave properly in those situations.</p>
<p>In my specific case, it would have been fine, but in the general case it might not always work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/comment-page-1/#comment-21</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Wed, 27 May 2009 15:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laufeyjarson.com/?p=25#comment-21</guid>
		<description>you shouldn&#039;t need scalar keys
my $hashref = {};
return if exists $hashref-&gt;{something};
load_hashref($hashref) unless  %$hashref;</description>
		<content:encoded><![CDATA[<p>you shouldn&#8217;t need scalar keys<br />
my $hashref = {};<br />
return if exists $hashref-&gt;{something};<br />
load_hashref($hashref) unless  %$hashref;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Melo</title>
		<link>http://blog.laufeyjarson.com/2009/05/autovivification-bit-me-today/comment-page-1/#comment-19</link>
		<dc:creator>Pedro Melo</dc:creator>
		<pubDate>Wed, 27 May 2009 06:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laufeyjarson.com/?p=25#comment-19</guid>
		<description>The last line can even be simpler:

    load_hashref($hashref) unless %$hashref;

Best regards,</description>
		<content:encoded><![CDATA[<p>The last line can even be simpler:</p>
<p>    load_hashref($hashref) unless %$hashref;</p>
<p>Best regards,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
