removeAtIndexInPriority() публичный Метод

Removes the item at a specific index within a priority. Override and call this method to insert your own functionality.
public removeAtIndexInPriority ( $index, $priority = null ) : mixed
Результат mixed the removed item.
Пример #1
0
 public function testCanNotRemoveAtIndexInPriorityWhenReadOnlyTList()
 {
     $plist = new TPriorityList($this->plist, true);
     try {
         $plist->removeAtIndexInPriority(0);
         self::fail('An expected TInvalidOperationException was not raised');
     } catch (TInvalidOperationException $e) {
     }
 }