GenericStack
class haxe.ds.GenericStack<T>Available in flash8, flash, neko, js, php, cpp, cs, javaA linked-list of elements. A different class is created for each container used in platforms where it matters
var head : GenericCell<T>
function new() : VoidCreates a new empty list.
inline function add( item : T ) : Void
inline function first() : Null<T>
inline function isEmpty() : Bool
function iterator() : Iterator<T>
inline function pop() : Null<T>
function remove( v : T ) : Bool
function toString() : String
version #18515, modified 2013-05-08 10:50:50 by api
0 comment