Ejemplo n.º 1
0
 /**
  * This method returns the length of this collection. Performs in O(n) time.
  *
  * @access public
  * @static
  * @param ILinkedList\Type $xs                              the left operand
  * @return IInt32\Type                                      the length of this collection
  */
 public static function length(ILinkedList\Type $xs) : IInt32\Type
 {
     return $xs->length();
 }