<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: new Vector - ActionScript 3&#8217;s Typed Array</title>
	<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/</link>
	<description>Adobe Flash Platform Commentaries and General Tech Rambling</description>
	<pubDate>Wed, 03 Dec 2008 06:46:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: hydrotik &#124; flash development &#124; actionscript &#124; creative &#187; Blog Archive &#187; 11 Must Have Flash Resources and 11 Must Have Utilities For 2009</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-45811</link>
		<dc:creator>hydrotik &#124; flash development &#124; actionscript &#124; creative &#187; Blog Archive &#187; 11 Must Have Flash Resources and 11 Must Have Utilities For 2009</dc:creator>
		<pubDate>Mon, 24 Nov 2008 01:03:05 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-45811</guid>
		<description>[...] on accessing its contents instead of what it contains. You can find a good example of this at Alex Bustin&#8217;s Blog. Also in recent news from Adobe, Alchemy (which allows you to compile C and C++ code into AS using [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] on accessing its contents instead of what it contains. You can find a good example of this at Alex Bustin&#8217;s Blog. Also in recent news from Adobe, Alchemy (which allows you to compile C and C++ code into AS using [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vern</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-44840</link>
		<dc:creator>Vern</dc:creator>
		<pubDate>Thu, 20 Nov 2008 02:59:19 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-44840</guid>
		<description>man...just got cs4....and changed a whole app's arrays to vectors....then read the comment about the poorer performance of vectors for non-primitive types...which describe all of the arrays I just converted to vectors!...ahhhh. I guess I should have tested first but it's so counter intuitive for a type safe data structure to perform worse.</description>
		<content:encoded><![CDATA[<p>man&#8230;just got cs4&#8230;.and changed a whole app&#8217;s arrays to vectors&#8230;.then read the comment about the poorer performance of vectors for non-primitive types&#8230;which describe all of the arrays I just converted to vectors!&#8230;ahhhh. I guess I should have tested first but it&#8217;s so counter intuitive for a type safe data structure to perform worse.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: henry</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-38093</link>
		<dc:creator>henry</dc:creator>
		<pubDate>Thu, 16 Oct 2008 08:18:37 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-38093</guid>
		<description>Thanks man just what i needed :)</description>
		<content:encoded><![CDATA[<p>Thanks man just what i needed <img src='http://thebackbutton.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vector class available in Flash 10 &#171; know SWF</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-29304</link>
		<dc:creator>Vector class available in Flash 10 &#171; know SWF</dc:creator>
		<pubDate>Mon, 18 Aug 2008 06:50:49 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-29304</guid>
		<description>[...] see here [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] see here [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juan</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-14467</link>
		<dc:creator>juan</dc:creator>
		<pubDate>Fri, 13 Jun 2008 09:42:12 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-14467</guid>
		<description>I was an aethiest, but now that there are typed collections in action script I DO believe that god exists.  Its about time.</description>
		<content:encoded><![CDATA[<p>I was an aethiest, but now that there are typed collections in action script I DO believe that god exists.  Its about time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca Deltodesco</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-11986</link>
		<dc:creator>Luca Deltodesco</dc:creator>
		<pubDate>Thu, 29 May 2008 16:21:29 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-11986</guid>
		<description>I've done a test with this, and using the Vector with primitive data types like 'int' ive found it to run with very roughly a third the execution time of an Array (both intially sized so resizing needed) 

However, worringly : using a non primitive type like Point, i found Array to slightly outperform the Vector....?

Is this going to perhaps be something like 'uint' in that at first uint tended to be ridiculously slow until an update got it down to its rightful execution speed in practice?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve done a test with this, and using the Vector with primitive data types like &#8216;int&#8217; ive found it to run with very roughly a third the execution time of an Array (both intially sized so resizing needed) </p>
<p>However, worringly : using a non primitive type like Point, i found Array to slightly outperform the Vector&#8230;.?</p>
<p>Is this going to perhaps be something like &#8216;uint&#8217; in that at first uint tended to be ridiculously slow until an update got it down to its rightful execution speed in practice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Taylor</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10512</link>
		<dc:creator>Matt Taylor</dc:creator>
		<pubDate>Wed, 21 May 2008 13:55:11 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10512</guid>
		<description>Hi,

Are you aware of any speed tests that have been done with the Vector type? ( thinking software rasterizer...)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Are you aware of any speed tests that have been done with the Vector type? ( thinking software rasterizer&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10263</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 19 May 2008 19:23:52 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10263</guid>
		<description>Aaron, the underscore is simply a way for me to recognize private member variables.</description>
		<content:encoded><![CDATA[<p>Aaron, the underscore is simply a way for me to recognize private member variables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10262</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 19 May 2008 18:57:33 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-10262</guid>
		<description>What's with the underscore in the name of _displayChildren?  Does that do something different than naming it just displayChildren?</description>
		<content:encoded><![CDATA[<p>What&#8217;s with the underscore in the name of _displayChildren?  Does that do something different than naming it just displayChildren?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed Ashour</title>
		<link>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-9946</link>
		<dc:creator>Saeed Ashour</dc:creator>
		<pubDate>Thu, 15 May 2008 23:06:21 +0000</pubDate>
		<guid>http://thebackbutton.com/blog/65/new-vector-actionscript-3s-typed-array/#comment-9946</guid>
		<description>Damn bro :) ! thanks for confirm bro</description>
		<content:encoded><![CDATA[<p>Damn bro <img src='http://thebackbutton.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ! thanks for confirm bro</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.338 seconds -->
