Ds\Map::capacity

(PECL ds >= 1.0.0)

Ds\Map::capacityReturns the current capacity

Opis

public Ds\Map::capacity ( void ) : int

Returns the current capacity.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The current capacity.

Przykłady

Przykład #1 Ds\Map::capacity() example

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

Powyższy przykład wyświetli coś podobnego do:

int(16)
add a note add a note

User Contributed Notes

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