You are here

public function EasyRdf_Container::rewind in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Container.php \EasyRdf_Container::rewind()

Rewind the iterator back to the start of the container (item 1)

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Container.php, line 90

Class

EasyRdf_Container
Sub-class of EasyRdf_Resource that represents an RDF container (rdf:Alt, rdf:Bag and rdf:Seq)

Code

public function rewind() {
  $this->position = 1;
}