haXe API Documentation
Back | Index
class haxe.ds.GenericStack<T>
Available in flash8, neko, js, flash, php, cpp
A linked-list of elements. A different class is created for each container used in platforms where it matters
var head : FastCell<T>
function new() : Void
Creates 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
Back | Index