From: Scott H. <sco...@us...> - 2005-05-27 05:15:02
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19117/src/org/actionstep Modified Files: NSArray.as Log Message: added ability to access internal array Index: NSArray.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSArray.as,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** NSArray.as 17 May 2005 03:21:19 -0000 1.9 --- NSArray.as 27 May 2005 05:14:52 -0000 1.10 *************** *** 57,60 **** --- 57,69 ---- /** + * Returns the internal array. For super quick operations only. + */ + public function internalList():Array + { + return m_list; + } + + + /** * Returns the number of objects currently in the array. */ |