The Ds\Deque::capacity() function is an inbuilt function in PHP which is used to get the current capacity of the Deque.
Syntax:
public Ds\Deque::capacity( void ) : int
Parameters: This function does not accepts any parameter.
Return Value: This function returns the current capacity of the Deque.
Below programs illustrate the Ds\Deque::capacity() function in PHP:
Program 1:
<?php
$deck = new \Ds\Deque();
echo ( "Default size of Deque: " );
var_dump( $deck ->capacity());
$deck ->allocate(50);
echo ( "Allocated size of Deque: " );
var_dump( $deck ->capacity());
?>
|
Output:
Default size of Deque: int(8)
Allocated size of Deque: int(64)
Program 2:
<?php
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo ( "Elements of Deque\n" );
var_dump( $deck );
echo ( "\nCapacity of Deque: " );
var_dump( $deck ->capacity());
?>
|
Output:
Elements of Deque
object(Ds\Deque)#1 (6) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
[4]=>
int(5)
[5]=>
int(6)
}
Capacity of Deque: int(8)
Reference: http://php.net/manual/en/ds-deque.capacity.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Aug, 2019
Like Article
Save Article