PHP 8.4.0 RC3 available for testing

The Parle\Stack class

(PECL parle >= 0.7.0)

Introdução

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

Resumo da classe

class Parle\Stack {
/* Propriedades */
public bool $empty = true;
public int $size = 0;
public mixed $top;
/* Métodos */
public pop(): void
public push(mixed $item): void
}

Propriedades

empty

Whether the stack is empty, readonly.

size

Stack size, readonly.

top

Element on the top of the stack.

Índice

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top