~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/flash9/Vector.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2010-01-31 23:08:43 UTC
  • mfrom: (5.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100131230843-1cxte2x20ypk9c25
Tags: 1:2.5-1
New upstream version, taken from new upstream subversion repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        function sort( f : T -> T -> Int ) : Void;
25
25
        function splice( pos : Int, len : Int ) : Vector<T>;
26
26
        function toString() : String;
27
 
 
28
 
        function iterator() : Iterator<T>;
29
 
 
30
27
        function indexOf( x : T, ?from : Int ) : Int;
31
28
        function lastIndexOf( x : T, ?from : Int ) : Int;
32
29