(&$keyType, &$valType, &$size)
| 295 | } |
| 296 | |
| 297 | public function readMapBegin(&$keyType, &$valType, &$size) |
| 298 | { |
| 299 | return |
| 300 | $this->readByte($keyType) + |
| 301 | $this->readByte($valType) + |
| 302 | $this->readI32($size); |
| 303 | } |
| 304 | |
| 305 | public function readMapEnd() |
| 306 | { |