The Parle\Stack class

(PECL parle >= 0.7.0)

Introducción

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

Sinopsis de la Clase

classParle\Stack {
publicbool$empty = true;
publicint$size = 0;
publicmixed$top;
publicpop(): void
publicpush(mixed$item): void
}

Propiedades

empty

Whether the stack is empty, readonly.

size

Stack size, readonly.

top

Element on the top of the stack.

Tabla de contenidos

To Top