Mercurial > hg > audiodb
view bindings/as3/ext/asunit/util/Iterator.as @ 745:6dfde1f7a7eb
python set l2norm done.
author | mas01mc |
---|---|
date | Sun, 14 Nov 2010 14:12:32 +0000 |
parents | 3a0b9700b3d2 |
children |
line wrap: on
line source
package asunit.util { [ExcludeClass] public interface Iterator { function next():Object; function hasNext():Boolean; function reset():void; } }