Ds\Queue::capacity

(PECL ds >= 1.0.0)

Ds\Queue::capacityReturns the current capacity

Descrição

public Ds\Queue::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\Queue::capacity() example

<?php
$queue 
= new \Ds\Queue();
var_dump($queue->capacity());

$queue->push(...range(150));
var_dump($queue->capacity());
?>

O exemplo acima irá imprimir algo similar à:

int(8)
int(64)
add a note add a note

User Contributed Notes

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