The ParleStack class

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.

目錄

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *