If I want to implement seek() to complete the SeekableIterator interface, should I internally revert to the old position if the seeked position is invalid? Like this:

public function seek( $position )
{
    $oldPosition = $this->_position;
    $this->_position = $position;
    if( !$this->valid() )
    {
        $this->_position = $oldPosition;
        throw new OutOfBoundsException( 'Invalid seek position (' . $position . ')' );
    }
}
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

If you use the php.net interface reference's example implementation as a guideline, then no, you should not "revert" to the original position, even if the supplied target position isn't valid.

link|improve this answer
feedback

According to the sample code from the SPL documentation, you should still change the position.

link|improve this answer
I see we had the same idea. ;) – Amber Sep 7 '09 at 0:16
Clearly great minds think alike. – carl Sep 7 '09 at 0:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.