<?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: Be mindful of Collection.contains(obj)</title>
	<atom:link href="http://blog.markturansky.com/archives/129/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.markturansky.com/archives/129</link>
	<description>software architecture &#38; engineering, code hints, sometimes philosophy, photography, life, etc.</description>
	<lastBuildDate>Thu, 19 Jan 2012 14:26:50 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim</title>
		<link>http://blog.markturansky.com/archives/129/comment-page-1#comment-1025</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Sun, 10 May 2009 01:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/129#comment-1025</guid>
		<description>Nothing better than order of magnitude performance gain.  Note also that because contains on a vector is O(n), and you were checking each object, your page was O(n^2), which is not good.</description>
		<content:encoded><![CDATA[<p>Nothing better than order of magnitude performance gain.  Note also that because contains on a vector is O(n), and you were checking each object, your page was O(n^2), which is not good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Piazza</title>
		<link>http://blog.markturansky.com/archives/129/comment-page-1#comment-1024</link>
		<dc:creator>Tony Piazza</dc:creator>
		<pubDate>Sun, 10 May 2009 00:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.markturansky.com/archives/129#comment-1024</guid>
		<description>Nice post. It&#039;s a nice reminder of why constant refactoring is worth the effort. I&#039;ve seen plenty of legacy Java code that could be improved by refactoring some uses of Vector with one of the 1.4+ unsynchronized Collection classes.</description>
		<content:encoded><![CDATA[<p>Nice post. It&#8217;s a nice reminder of why constant refactoring is worth the effort. I&#8217;ve seen plenty of legacy Java code that could be improved by refactoring some uses of Vector with one of the 1.4+ unsynchronized Collection classes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

