equal
deleted
inserted
replaced
12 * obtain it through the world-wide-web, please send an email |
12 * obtain it through the world-wide-web, please send an email |
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Stdlib |
16 * @package Zend_Stdlib |
17 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
17 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 */ |
19 */ |
20 |
20 |
21 require_once 'Zend/Stdlib/SplPriorityQueue.php'; |
21 require_once 'Zend/Stdlib/SplPriorityQueue.php'; |
22 |
22 |
32 * "inner" iterator in the form of an SplPriorityQueue object for performing |
32 * "inner" iterator in the form of an SplPriorityQueue object for performing |
33 * the actual iteration. |
33 * the actual iteration. |
34 * |
34 * |
35 * @category Zend |
35 * @category Zend |
36 * @package Zend_Stdlib |
36 * @package Zend_Stdlib |
37 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
37 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
38 * @license http://framework.zend.com/license/new-bsd New BSD License |
38 * @license http://framework.zend.com/license/new-bsd New BSD License |
39 */ |
39 */ |
40 class Zend_Stdlib_PriorityQueue implements Countable, IteratorAggregate, Serializable |
40 class Zend_Stdlib_PriorityQueue implements Countable, IteratorAggregate, Serializable |
41 { |
41 { |
42 const EXTR_DATA = 0x00000001; |
42 const EXTR_DATA = 0x00000001; |