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

Ds\Set::capacity

(PECL ds >= 1.0.0)

Ds\Set::capacityReturns the current capacity

Açıklama

public Ds\Set::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\Set::capacity() example

<?php
$set
= new \Ds\Set();
var_dump($set->capacity());

$set->add(...range(1, 50));
var_dump($set->capacity());
?>

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

int(16)
int(64)