Lines Matching refs:heap
8 function testForException( $heap )
12 foreach( $heap as &$item );
21 $heap = new SplMinHeap;
22 testForException( $heap );
25 $heap = new SplMinHeap;
26 $heap->insert( 1 );
27 testForException( $heap );
30 $heap = new SplMaxHeap;
31 testForException( $heap );
34 $heap = new SplMaxHeap;
35 $heap->insert( 1 );
36 testForException( $heap );
39 $heap = new SplPriorityQueue;
40 testForException( $heap );
43 $heap = new SplPriorityQueue;
44 $heap->insert( 1, 2 );
45 testForException( $heap );