Datastructures
SplDoublyLinkedList::bottom
Datastructures
PHP Manual
کلاس SplDoublyLinkedList
Introduction
کلاس SplDoublyLinkedList عملکرد اصلی لیست دو پیوندی را فراهم میکند.
Class synopsis
SplDoublyLinkedList
implements
Iterator
,
ArrayAccess
,
Countable
{
/* Methods */
__construct
(
void
)
mixed
bottom
(
void
)
int
count
(
void
)
mixed
current
(
void
)
int
getIteratorMode
(
void
)
bool
isEmpty
(
void
)
mixed
key
(
void
)
void
next
(
void
)
bool
offsetExists
(
mixed
$index
)
mixed
offsetGet
(
mixed
$index
)
void
offsetSet
(
mixed
$index
,
mixed
$newval
)
void
offsetUnset
(
mixed
$index
)
mixed
pop
(
void
)
void
prev
(
void
)
void
push
(
mixed
$value
)
void
rewind
(
void
)
void
setIteratorMode
(
int
$mode
)
mixed
shift
(
void
)
mixed
top
(
void
)
void
unshift
(
mixed
$value
)
bool
valid
(
void
)
}
Table of Contents
SplDoublyLinkedList::bottom
— نگاه به گره ابتدایی لیست دوپیوندی
SplDoublyLinkedList::__construct
— ساخت لیست دو پیوندی جدید
SplDoublyLinkedList::count
— شمارش تعداد اجزا در لیست دوپیوندی
SplDoublyLinkedList::current
— بازگرداندن ورودی آرایه فعلی
SplDoublyLinkedList::getIteratorMode
— بازگرداندن حالت تکرار
SplDoublyLinkedList::isEmpty
— بررسی خالی بودن لیست دوپیوندی
SplDoublyLinkedList::key
— بازگرداندن اندیس گره فعلی
SplDoublyLinkedList::next
— انتقال به ورودی قبلی
SplDoublyLinkedList::offsetExists
— بازگرداندن وجود یا عدم وجود اندیس درخواست شده
SplDoublyLinkedList::offsetGet
— بازگرداندن مقدار در اندیس مشخص
SplDoublyLinkedList::offsetSet
— تعیین مقدار در اندیس مشخص newval
SplDoublyLinkedList::offsetUnset
— از حالت تعیین خارج کردن مقدار در اندیس مشخص
SplDoublyLinkedList::pop
— حذف گره از انتهای لیست دوپیوندی
SplDoublyLinkedList::prev
— انتقال به ورودی قبلی
SplDoublyLinkedList::push
— وارد کردن جز در انتهای لیست دو پیوندی
SplDoublyLinkedList::rewind
— برگرداندن تکرارکننده به شروع
SplDoublyLinkedList::setIteratorMode
— تعیین حالت تکرار
SplDoublyLinkedList::shift
— شیفت گره از ابتدای لیست دوپیوندی
SplDoublyLinkedList::top
— نگاه به گره آخر لیست دوپیوندی
SplDoublyLinkedList::unshift
— اضافه نمودن یک عضو به ابتدای لیست دو پیوندی
SplDoublyLinkedList::valid
— بررسی لیست دوپیوندی برای گره های بیشتر
Datastructures
SplDoublyLinkedList::bottom
Datastructures
PHP Manual