Ds\Map::capacity

(PECL ds >= 1.0.0)

Ds\Map::capacityReturns the current capacity

Descrição

public Ds\Map::capacity ( ) : int

Returns the current capacity.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The current capacity.

Exemplos

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

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

O exemplo acima irá imprimir algo similar à:

int(16)
add a note add a note

User Contributed Notes

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