Dutch PHP Conference 2025 - Call For Papers

The Parle\Stack class

(PECL parle >= 0.7.0)

Вступ

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

Короткий огляд класу

class Parle\Stack {
/* Властивості */
public bool $empty = true;
public int $size = 0;
public mixed $top;
/* Методи */
public pop(): void
public push(mixed $item): void
}

Властивості

empty

Whether the stack is empty, readonly.

size

Stack size, readonly.

top

Element on the top of the stack.

Зміст

add a note

User Contributed Notes

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