MCPcopy Create free account
hub / github.com/apache/avro / skipLong

Method skipLong

lang/php/lib/Datum/AvroIOBinaryDecoder.php:229–235  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

227 }
228
229 public function skipLong()
230 {
231 $b = ord($this->nextByte());
232 while (0 != ($b & 0x80)) {
233 $b = ord($this->nextByte());
234 }
235 }
236
237 public function skipFloat()
238 {

Callers 2

skipIntMethod · 0.95
skipDataMethod · 0.45

Calls 1

nextByteMethod · 0.95

Tested by

no test coverage detected