Ds\Map::capacity

(PECL ds >= 1.0.0)

Ds\Map::capacityReturns the current capacity

Descrizione

public Ds\Map::capacity(): int

Returns the current capacity.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The current capacity.

Esempi

Example #1 Ds\Map::capacity() example

<?php
$map
= new \Ds\Map();
var_dump($map->capacity());
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

int(16)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top