SimpleXMLIterator::valid
SplDoublyLinkedList::bottom
SPL
PHP Manual
SplDoublyLinkedList クラス
導入
SplDoublyLinkedList クラスは、双方向リンクリストの主要な機能を提供します。
クラス概要
SplDoublyLinkedList
SplDoublyLinkedList
implements
Iterator
,
ArrayAccess
,
Countable
{
/* メソッド */
SplDoublyLinkedList::__construct
(
void
)
mixed
SplDoublyLinkedList::bottom
(
void
)
int
SplDoublyLinkedList::count
(
void
)
mixed
SplDoublyLinkedList::current
(
void
)
int
SplDoublyLinkedList::getIteratorMode
(
void
)
bool
SplDoublyLinkedList::isEmpty
(
void
)
mixed
SplDoublyLinkedList::key
(
void
)
void
SplDoublyLinkedList::next
(
void
)
bool
SplDoublyLinkedList::offsetExists
(
mixed
$index
)
mixed
SplDoublyLinkedList::offsetGet
(
mixed
$index
)
void
SplDoublyLinkedList::offsetSet
(
mixed
$index
,
mixed
$newval
)
void
SplDoublyLinkedList::offsetUnset
(
mixed
$index
)
mixed
SplDoublyLinkedList::pop
(
void
)
void
SplDoublyLinkedList::push
(
mixed
$value
)
void
SplDoublyLinkedList::rewind
(
void
)
void
SplDoublyLinkedList::setIteratorMode
(
int
$mode
)
mixed
SplDoublyLinkedList::shift
(
void
)
mixed
SplDoublyLinkedList::top
(
void
)
void
SplDoublyLinkedList::unshift
(
mixed
$value
)
bool
SplDoublyLinkedList::valid
(
void
)
}
目次
SplDoublyLinkedList::bottom
? 双方向リンクリストの最初のノードを取得する
SplDoublyLinkedList::__construct
? 新しい双方向リンクリストを作成する
SplDoublyLinkedList::count
? 双方向リンクリストの要素数を数える
SplDoublyLinkedList::current
? 現在の配列の要素を返す
SplDoublyLinkedList::getIteratorMode
? 反復処理のモードを返す
SplDoublyLinkedList::isEmpty
? 双方向リンクリストが空かどうかを調べる
SplDoublyLinkedList::key
? 現在のノードのインデックスを返す
SplDoublyLinkedList::next
? 次のエントリに移動する
SplDoublyLinkedList::offsetExists
? 指定した $index が存在するかどうかを返す
SplDoublyLinkedList::offsetGet
? 指定した $index の値を返す
SplDoublyLinkedList::offsetSet
? 指定した $index の値を $newval に設定する
SplDoublyLinkedList::offsetUnset
? 指定した $index の値を削除する
SplDoublyLinkedList::pop
? 双方向リンクリストの末尾からノードを取り出す
SplDoublyLinkedList::push
? 双方向リンクリストの末尾に要素を追加する
SplDoublyLinkedList::rewind
? イテレータを先頭に巻き戻す
SplDoublyLinkedList::setIteratorMode
? 反復処理のモードを設定する
SplDoublyLinkedList::shift
? 双方向リンクリストの先頭からノードを取り出す
SplDoublyLinkedList::top
? 双方向リンクリストの最後のノードを取得する
SplDoublyLinkedList::unshift
? 双方向リンクリストの先頭に要素を追加する
SplDoublyLinkedList::valid
? 双方向リンクリストにまだノードがあるかどうかを調べる
SimpleXMLIterator::valid
SplDoublyLinkedList::bottom
SPL
PHP Manual