Php/docs/class.parle-stack

提供:Dev Guides
< Php
2020年12月14日 (月) 10:34時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

(PECL parle >= 0.7.0)

はじめに

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


クラス概要


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.


目次