The Stack class
(No version information available, might only be in Git)
简介
A Stack is a "last in, first out" or "LIFO" collection that only allows
access to the value at the top of the structure and iterates in that order,
destructively.
Uses a Ds\Vector internally.
类摘要
Ds\Stack
implements
Ds\Collection
{
public allocate
(
int $capacity
) :
void
public clear
(
void
) :
void
public copy
(
void
) :
Ds\Stack
}
Table of Contents
User Contributed Notes
There are no user contributed notes for this page.