Ejemplo n.º 1
0
 /**
  * This method returns the item at the specified index.
  *
  * @access public
  * @static
  * @param ILinkedList\Type $xs                              the left operand
  * @param IInt32\Type $i                                    the index of the item
  * @return Core\Type                                        the item at the specified index
  * @throws Throwable\OutOfBounds\Exception                  indicates the specified index
  *                                                          cannot be found
  */
 public static function item(ILinkedList\Type $xs, IInt32\Type $i) : Core\Type
 {
     return $xs->item($i);
 }