The Parle\Stack class

(PECL parle >= 0.7.0)

Wstęp

Parle\Stack is a LIFO stack. The elements are inserted and removed only from one end.

Krótki opis klasy

Parle\Stack {
/* Właściwości */
public boolean $empty = TRUE ;
public integer $size = 0 ;
public mixed $top ;
/* Metody */
public pop ( void ) : void
public push ( mixed $item ) : void
}

Właściwości

empty

Whether the stack is empty, readonly.

size

Stack size, readonly.

top

Element on the top of the stack.

Spis treści

add a note add a note

User Contributed Notes

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