<?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: The Inner Workings of a ColdFusion Array and Structure</title>
	<atom:link href="http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure</link>
	<description>The opposite of every great idea is another great idea</description>
	<lastBuildDate>Tue, 24 Jan 2012 10:54:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jimmy</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-239</link>
		<dc:creator>Jimmy</dc:creator>
		<pubDate>Thu, 13 Aug 2009 16:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-239</guid>
		<description>Thanks a lot for this! It just saved me a bunch of time. I wasn&#039;t aware of CF holding a single copy of an array/struct in memory if you make a copy of it. I was ending up with 7 arrays with the same data and I couldn&#039;t figure out why. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this! It just saved me a bunch of time. I wasn&#8217;t aware of CF holding a single copy of an array/struct in memory if you make a copy of it. I was ending up with 7 arrays with the same data and I couldn&#8217;t figure out why. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inner Workings of ColdFusion Arrays and Structures &#171; Ecoders Resource</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-238</link>
		<dc:creator>Inner Workings of ColdFusion Arrays and Structures &#171; Ecoders Resource</dc:creator>
		<pubDate>Mon, 22 Sep 2008 03:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-238</guid>
		<description>[...] http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure   Tags: arrays, ColdFusion, reference, struct, structure, value [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure" rel="nofollow">http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure</a>   Tags: arrays, ColdFusion, reference, struct, structure, value [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergey</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-237</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Mon, 12 May 2008 17:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-237</guid>
		<description>Very nice article, thanks</description>
		<content:encoded><![CDATA[<p>Very nice article, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-236</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Wed, 12 Mar 2008 10:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-236</guid>
		<description>@Duncan you&#039;re entirely correct. I&#039;ve updated the post.

Clearly writing this post late at night was not a very clever idea!</description>
		<content:encoded><![CDATA[<p>@Duncan you&#8217;re entirely correct. I&#8217;ve updated the post.</p>
<p>Clearly writing this post late at night was not a very clever idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: duncan</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-235</link>
		<dc:creator>duncan</dc:creator>
		<pubDate>Wed, 12 Mar 2008 10:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-235</guid>
		<description>Either I&#039;m being daft, or there&#039;s a mistake in your code or comments:

&lt;blockquote&gt;a change in b.name will also result in a change of a.name:
&lt;code&gt;a.name = &quot;Simon Whatley&quot;;
	b = a; //shallow copy for Struct
	b.name = &quot;John Doe&quot;;
	writeOutput(a.name); // the returned result is Simon Whatley&lt;/code&gt;
&lt;/blockquote&gt;

Should the comment say John Doe?

&lt;blockquote&gt;
&lt;code&gt;
a = structNew();
	a.name = &quot;Wu Mingshi&quot;;
	b = duplicate(a); //deep copy for Struct
	b.name = &quot;Ivan Ivanovic&quot;;
	writeOutput(a.name); // the returned result is Ivan Ivanovic
&lt;/code&gt;
&lt;/blockquote&gt;

Shouldn&#039;t this comment say Wu Mingshi?</description>
		<content:encoded><![CDATA[<p>Either I&#8217;m being daft, or there&#8217;s a mistake in your code or comments:</p>
<blockquote><p>a change in b.name will also result in a change of a.name:<br />
<pre><code>a.name = "Simon Whatley";
	b = a; //shallow copy for Struct
	b.name = "John Doe";
	writeOutput(a.name); // the returned result is Simon Whatley</code></pre>
</p></blockquote>
<p>Should the comment say John Doe?</p>
<blockquote><p>
<pre><code>
a = structNew();
	a.name = "Wu Mingshi";
	b = duplicate(a); //deep copy for Struct
	b.name = "Ivan Ivanovic";
	writeOutput(a.name); // the returned result is Ivan Ivanovic
</code></pre>
</p></blockquote>
<p>Shouldn&#8217;t this comment say Wu Mingshi?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: injun #576871</title>
		<link>http://www.simonwhatley.co.uk/the-inner-workings-of-a-coldfusion-array-and-structure/comment-page-1#comment-234</link>
		<dc:creator>injun #576871</dc:creator>
		<pubDate>Tue, 11 Mar 2008 14:17:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=465#comment-234</guid>
		<description>Good post!
PS: thanks for &#039;Ivan Ivanovic&#039;... :)</description>
		<content:encoded><![CDATA[<p>Good post!<br />
PS: thanks for &#8216;Ivan Ivanovic&#8217;&#8230; <img src='http://www.simonwhatley.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

