Lines Matching defs:position
50 private $position;
65 $this->position = 0;
76 $this->position = 0;
80 * Return the element at the current position.
82 * @return object The element at the current position.
86 return $this->container[$this->position];
90 * Return the current position.
92 * @return integer The current position.
96 return $this->position;
100 * Move to the next position.
106 ++$this->position;
116 return isset($this->container[$this->position]);