Ds\Map::capacity

(PECL ds >= 1.0.0)

Ds\Map::capacityReturns the current capacity

Descrierea

public Ds\Map::capacity ( ) : int

Returns the current capacity.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The current capacity.

Exemple

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

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

Exemplul de mai sus va afișa ceva similar cu:

int(16)
add a note add a note

User Contributed Notes

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