<?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: AS3 HashMap for Flex 2</title>
	<atom:link href="http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/</link>
	<description></description>
	<pubDate>Sat, 13 Mar 2010 10:03:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: eric</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141659</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Thu, 23 Apr 2009 13:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141659</guid>
		<description>Hey Anantha,

The HashMap class has a direct dependency on the IHashMapEntry interface, therefore when using the Hashmap API you will need the dependencies as well, all of which can be found at:
http://www.ericfeminella.com/blog/actionscript-3-apis/</description>
		<content:encoded><![CDATA[<p>Hey Anantha,</p>
<p>The HashMap class has a direct dependency on the IHashMapEntry interface, therefore when using the Hashmap API you will need the dependencies as well, all of which can be found at:<br />
<a href="http://www.ericfeminella.com/blog/actionscript-3-apis/" rel="nofollow">http://www.ericfeminella.com/blog/actionscript-3-apis/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anantha Prasad</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141658</link>
		<dc:creator>Anantha Prasad</dc:creator>
		<pubDate>Thu, 23 Apr 2009 06:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141658</guid>
		<description>I tried to use Hashmap but it gives the following error 

1046: Type was not found or was not a compile-time constant: IHashMapEntry.

Can anybody help me with as I'm a newbie to flex</description>
		<content:encoded><![CDATA[<p>I tried to use Hashmap but it gives the following error </p>
<p>1046: Type was not found or was not a compile-time constant: IHashMapEntry.</p>
<p>Can anybody help me with as I&#8217;m a newbie to flex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas Bousquet</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141655</link>
		<dc:creator>Nicolas Bousquet</dc:creator>
		<pubDate>Tue, 07 Apr 2009 09:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141655</guid>
		<description>I loved the HashMap class in Java, now I can love it in AS. I wish there was a syntaxic way to force key and value to specific classes without having to write a subclass to HashMap tho.
Thanks for these classes, be sure they are neatly stored in my global classpath now.</description>
		<content:encoded><![CDATA[<p>I loved the HashMap class in Java, now I can love it in AS. I wish there was a syntaxic way to force key and value to specific classes without having to write a subclass to HashMap tho.<br />
Thanks for these classes, be sure they are neatly stored in my global classpath now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prakash</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141653</link>
		<dc:creator>Prakash</dc:creator>
		<pubDate>Fri, 27 Mar 2009 17:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141653</guid>
		<description>Can i bind the Java HashMap to Flex HashMap.as using [Bindable] [RemoteClass=...]?

Thanks
Prakash</description>
		<content:encoded><![CDATA[<p>Can i bind the Java HashMap to Flex HashMap.as using [Bindable] [RemoteClass=...]?</p>
<p>Thanks<br />
Prakash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor Grapp</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141648</link>
		<dc:creator>Igor Grapp</dc:creator>
		<pubDate>Tue, 17 Mar 2009 02:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141648</guid>
		<description>Great addition to flex libraries! 

One comment - I would change implementation of the  HashMap.isEmpty() so it does not call size() method - after all there is no need to iterate over each element  to identify that it is empty. I would Implement it like this:

 public function isEmpty() : Boolean
        {
        	
        	for (var key:* in map)
            {
                return false;
            }
            return true;
            
        }</description>
		<content:encoded><![CDATA[<p>Great addition to flex libraries! </p>
<p>One comment - I would change implementation of the  HashMap.isEmpty() so it does not call size() method - after all there is no need to iterate over each element  to identify that it is empty. I would Implement it like this:</p>
<p> public function isEmpty() : Boolean<br />
        {</p>
<p>        	for (var key:* in map)<br />
            {<br />
                return false;<br />
            }<br />
            return true;</p>
<p>        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-141646</link>
		<dc:creator>Nicholas</dc:creator>
		<pubDate>Thu, 12 Mar 2009 17:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-141646</guid>
		<description>Yea I seem to be having the same issue as e9. Wants the mx.collections.IList in the IMap class/interface. This is cause it imports it at the top and I guess this is really used for Flex and not just ordinrary as3 in Flash... Any chance of using it without the IList Class?

Let me know as I'd love to be using your work... keep it up!
Nick.</description>
		<content:encoded><![CDATA[<p>Yea I seem to be having the same issue as e9. Wants the mx.collections.IList in the IMap class/interface. This is cause it imports it at the top and I guess this is really used for Flex and not just ordinrary as3 in Flash&#8230; Any chance of using it without the IList Class?</p>
<p>Let me know as I&#8217;d love to be using your work&#8230; keep it up!<br />
Nick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eric</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-137683</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Tue, 02 Dec 2008 15:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-137683</guid>
		<description>If you go to the http://www.ericfeminella.com/blog/actionscript-3-apis/ page you can always find the latest versions of all OS APIs I have published. The latest versions of the HashMap API do not contain any references to Flex framework components.</description>
		<content:encoded><![CDATA[<p>If you go to the <a href="http://www.ericfeminella.com/blog/actionscript-3-apis/" rel="nofollow">http://www.ericfeminella.com/blog/actionscript-3-apis/</a> page you can always find the latest versions of all OS APIs I have published. The latest versions of the HashMap API do not contain any references to Flex framework components.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: e9</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-136707</link>
		<dc:creator>e9</dc:creator>
		<pubDate>Sat, 29 Nov 2008 16:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-136707</guid>
		<description>I'm using Flasch cs4 (still haven't switched to Flex or flashdevelop). anyway, I downloaded and began implementing your collections package...It turns out that Flash (at least for me) does not have the mx.collections.IList class that you import in the IMap interface...  i decided to see what would happen if i just commented out the import (terrible i know..but i really didn't want to reinvent the hashmap wheel )... from some experiments so far, I seem to be able to use the classes without mx.collections.IList -- i have been able to set, get, nadremove keys and values without any problems yet.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using Flasch cs4 (still haven&#8217;t switched to Flex or flashdevelop). anyway, I downloaded and began implementing your collections package&#8230;It turns out that Flash (at least for me) does not have the mx.collections.IList class that you import in the IMap interface&#8230;  i decided to see what would happen if i just commented out the import (terrible i know..but i really didn&#8217;t want to reinvent the hashmap wheel )&#8230; from some experiments so far, I seem to be able to use the classes without mx.collections.IList &#8212; i have been able to set, get, nadremove keys and values without any problems yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kai Mai</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-126665</link>
		<dc:creator>Kai Mai</dc:creator>
		<pubDate>Wed, 15 Oct 2008 19:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-126665</guid>
		<description>You also need to get the following files:
http://code.ericfeminella.com/classes/as3/HashMapEntry.as.html
http://code.ericfeminella.com/classes/as3/IHashMapEntry.as.html</description>
		<content:encoded><![CDATA[<p>You also need to get the following files:<br />
<a href="http://code.ericfeminella.com/classes/as3/HashMapEntry.as.html" rel="nofollow">http://code.ericfeminella.com/classes/as3/HashMapEntry.as.html</a><br />
<a href="http://code.ericfeminella.com/classes/as3/IHashMapEntry.as.html" rel="nofollow">http://code.ericfeminella.com/classes/as3/IHashMapEntry.as.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sanjeev</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-103768</link>
		<dc:creator>sanjeev</dc:creator>
		<pubDate>Fri, 29 Aug 2008 09:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-103768</guid>
		<description>is it woks with flex3 as I am getting some error for 'IHashMapEntry'</description>
		<content:encoded><![CDATA[<p>is it woks with flex3 as I am getting some error for &#8216;IHashMapEntry&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Jenik</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-77074</link>
		<dc:creator>Michael Jenik</dc:creator>
		<pubDate>Wed, 23 Jul 2008 02:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-77074</guid>
		<description>Thanks.. As Tim said : " I was about to implement my own HashMap from the Dictionary until i found this. Thanks for saving me some work!"</description>
		<content:encoded><![CDATA[<p>Thanks.. As Tim said : &#8221; I was about to implement my own HashMap from the Dictionary until i found this. Thanks for saving me some work!&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ziad</title>
		<link>http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/comment-page-1/#comment-76949</link>
		<dc:creator>Ziad</dc:creator>
		<pubDate>Tue, 22 Jul 2008 18:50:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericfeminella.com/blog/2006/12/05/as3-hashmap-for-flex/#comment-76949</guid>
		<description>Hello,

Now it's fine, I iterate on my Map,</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Now it&#8217;s fine, I iterate on my Map,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
