Class TStack

Declaration
TStack = class(TObject)
  function Count: Integer;
  constructor Create;
  destructor Destroy;
  function Peek: TObject;
  function Pop: TObject;
  procedure Push(Obj: TObject);
end;
Description

Wrapper for the Delphi 5 TStack class. See Delphi help for more information.


Method TStack.Count

Declaration
function Count: Integer;
Description



Method TStack.Create

Declaration
constructor Create;
Description



Method TStack.Destroy

Declaration
destructor Destroy;
Description



Method TStack.Peek

Declaration
function Peek: TObject;
Description



Method TStack.Pop

Declaration
function Pop: TObject;
Description



Method TStack.Push

Declaration
procedure Push(Obj: TObject);
Description