array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'ds-deque.capacity.php', 1 => 'Ds\\Deque::capacity', 2 => 'Returns the current capacity', ), 'up' => array ( 0 => 'class.ds-deque.php', 1 => 'Ds\\Deque', ), 'prev' => array ( 0 => 'ds-deque.apply.php', 1 => 'Ds\\Deque::apply', ), 'next' => array ( 0 => 'ds-deque.clear.php', 1 => 'Ds\\Deque::clear', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/deque/capacity.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Deque::capacity

(PECL ds >= 1.0.0)

Ds\Deque::capacityReturns the current capacity

Açıklama

public Ds\Deque::capacity(): int

Returns the current capacity.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

The current capacity.

Örnekler

Örnek 1 Ds\Deque::capacity() example

<?php
$deque
= new \Ds\Deque();
var_dump($deque->capacity());

$deque->push(...range(1, 50));
var_dump($deque->capacity());
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(8)
int(64)