예제 #1
0
 /**
  * @expectedException \Novuso\System\Exception\LookupException
  */
 public function test_that_select_throws_exception_when_rank_out_of_bounds()
 {
     $tree = new RedBlackSearchTree(new ComparableComparator());
     $tree->select(10);
 }
예제 #2
0
파일: SortedSet.php 프로젝트: novuso/system
 /**
  * {@inheritdoc}
  */
 public function select(int $rank)
 {
     return $this->tree->select($rank);
 }