MCPcopy Create free account
hub / github.com/apache/thrift / readUByte

Method readUByte

lib/php/lib/Protocol/TCompactProtocol.php:425–432  ·  view source on GitHub ↗
(&$value)

Source from the content-addressed store, hash-verified

423 }
424
425 public function readUByte(&$value)
426 {
427 $data = $this->trans_->readAll(1);
428 $arr = unpack('C', $data);
429 $value = $arr[1];
430
431 return 1;
432 }
433
434 public function readByte(&$value)
435 {

Callers 4

readFieldBeginMethod · 0.95
readMessageBeginMethod · 0.95
readCollectionBeginMethod · 0.95
readMapBeginMethod · 0.95

Calls 1

readAllMethod · 0.45

Tested by

no test coverage detected