コード例 #1
0
ファイル: Table.php プロジェクト: arzzen/php-flatbuffers
 /**
  * @param Table $table
  * @param int $offset
  * @return Table
  */
 protected function __union($table, $offset)
 {
     $offset += $this->bb_pos;
     $table->bb_pos = $offset + $this->bb->getInt($offset);
     $table->bb = $this->bb;
     return $table;
 }