Returns the current capacity.
Diese Funktion hat keine Parameter.
The current capacity.
Beispiel #1 Ds\Vector::capacity example
<?php$vector = new \Ds\Vector();var_dump($vector->capacity());$vector->push(...range(1, 50));var_dump($vector->capacity());$vector[] = "a";var_dump($vector->capacity());?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
int(10) int(50) int(75)