コード例 #1
0
ファイル: SortedSet.php プロジェクト: novuso/system
 /**
  * {@inheritdoc}
  */
 public function ceiling($item)
 {
     return $this->tree->ceiling($item);
 }
コード例 #2
0
 /**
  * @expectedException \Novuso\System\Exception\UnderflowException
  */
 public function test_that_ceiling_throws_exception_when_empty()
 {
     $tree = new RedBlackSearchTree(new ComparableComparator());
     $tree->ceiling(WeekDay::WEDNESDAY());
 }
コード例 #3
0
ファイル: SortedTable.php プロジェクト: novuso/system
 /**
  * {@inheritdoc}
  */
 public function ceiling($key)
 {
     return $this->tree->ceiling($key);
 }