/srv/osrm/osrm-backend/third_party/flatbuffers/tests/union_vector
Edit: /srv/osrm/osrm-backend/third_party/flatbuffers/tests/union_vector/BookReader.php (873B)
bb_pos = $_i;
$this->bb = $_bb;
return $this;
}
/**
* @return int
*/
public function GetBooksRead()
{
return $this->bb->getInt($this->bb_pos + 0);
}
/**
* @return int offset
*/
public static function createBookReader(FlatBufferBuilder $builder, $booksRead)
{
$builder->prep(4, 4);
$builder->putInt($booksRead);
return $builder->offset();
}
}