Ds\Deque::allocate
(PECL ds >= 1.0.0)
Ds\Deque::allocate — Allocates enough memory for a required capacity.
Описание
$capacity
)Ensures that enough memory is allocated for a required capacity. This removes the need to reallocate the internal as values are added.
Список параметров
-
capacity
-
The number of values for which capacity should be allocated.
Замечание:
Capacity will stay the same if this value is less than or equal to the current capacity.
Замечание:
Capacity will always be rounded up to the nearest power of 2.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 Ds\Deque::allocate() example
<?php
$deque = new \Ds\Deque();
var_dump($deque->capacity());
$deque->allocate(100);
var_dump($deque->capacity());
?>
Результатом выполнения данного примера будет что-то подобное:
int(8) int(128)
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Deque::allocate
- Ds\Deque::apply
- Ds\Deque::capacity
- Ds\Deque::clear
- Ds\Deque::__construct
- Ds\Deque::contains
- Ds\Deque::copy
- Ds\Deque::count
- Ds\Deque::filter
- Ds\Deque::find
- Ds\Deque::first
- Ds\Deque::get
- Ds\Deque::insert
- Ds\Deque::isEmpty
- Ds\Deque::join
- Ds\Deque::jsonSerialize
- Ds\Deque::last
- Ds\Deque::map
- Ds\Deque::merge
- Ds\Deque::pop
- Ds\Deque::push
- Ds\Deque::reduce
- Ds\Deque::remove
- Ds\Deque::reverse
- Ds\Deque::reversed
- Ds\Deque::rotate
- Ds\Deque::set
- Ds\Deque::shift
- Ds\Deque::slice
- Ds\Deque::sort
- Ds\Deque::sorted
- Ds\Deque::sum
- Ds\Deque::toArray
- Ds\Deque::unshift
Коментарии
404 Not Found