<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Simplistika &#187; arrays</title>
	<atom:link href="http://simplistika.com/tag/arrays/feed/" rel="self" type="application/rss+xml" />
	<link>http://simplistika.com</link>
	<description>Think Simple</description>
	<lastBuildDate>Thu, 13 May 2010 11:48:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ActionScript 3 Remove duplicates in an array</title>
		<link>http://simplistika.com/actionscript-3-remove-duplicates-in-an-array/</link>
		<comments>http://simplistika.com/actionscript-3-remove-duplicates-in-an-array/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 09:36:49 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[remove duplicates]]></category>
		<category><![CDATA[splice]]></category>

		<guid isPermaLink="false">http://jared.simplistika.com/?p=33</guid>
		<description><![CDATA[function fRemoveDup(ac:Array) : void { var i, j : int; for (i = 0; i < ac.length - 1; i++) for (j = i + 1; j < ac.length; j++) if (ac[i] === ac[j]) ac.splice(j, 1); } Then use fRemoveDup(arrayHere) to clear any duplicates. Click here to download sample.]]></description>
			<content:encoded><![CDATA[<pre lang="actionscript">function fRemoveDup(ac:Array) : void
{
    var i, j : int;
    for (i = 0; i < ac.length - 1; i++)
        for (j = i + 1; j < ac.length; j++)
            if (ac[i] === ac[j])
                ac.splice(j, 1);
}</pre>
<p>Then use <strong>fRemoveDup(arrayHere)</strong> to clear any duplicates.</p>
<p><a href="http://www.simplistika.com/files/fRemoveDup.fla">Click here to download sample</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://simplistika.com/actionscript-3-remove-duplicates-in-an-array/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
