Ds\PriorityQueue::toArray

(PECL ds >= 1.0.0)

Ds\PriorityQueue::toArray Converts the queue to an array.

Описание

public array Ds\PriorityQueue::toArray ( void )

Converts the queue to an array.

Замечание:

This method is not destructive.

Замечание:

Casting to an array is not supported yet.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

An array containing all the values in the same order as the queue.

Примеры

Пример #1 Ds\PriorityQueue::toArray() example

<?php
$queue 
= new \Ds\PriorityQueue();

$queue->push("a",  5);
$queue->push("b"15);
$queue->push("c"10);

var_dump($queue->toArray());
?>

Результатом выполнения данного примера будет что-то подобное:

array(3) {
  [0]=>
  string(1) "b"
  [1]=>
  string(1) "c"
  [2]=>
  string(1) "a"
}

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ