The Stack class

(No version information available, might only be in Git)

Wstęp

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.

Krótki opis klasy

Ds\Stack implements Ds\Collection {
/* Metody */
public allocate ( int $capacity ) : void
public capacity ( void ) : int
public clear ( void ) : void
public copy ( void ) : Ds\Stack
public isEmpty ( void ) : bool
public peek ( void ) : mixed
public pop ( void ) : mixed
public push ([ mixed $...values ] ) : void
public toArray ( void ) : array
}

Spis treści

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top