コード例 #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);
 }