Ds\PriorityQueue::capacity

(PECL ds >= 1.0.0)

Ds\PriorityQueue::capacityReturns the current capacity

Opis

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

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

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

int(8)
add a note add a note

User Contributed Notes

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