Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. GPBWire.php

function GPBWire::readSint32

1 call to GPBWire::readSint32()
Message::parseFieldFromStreamNoTag in vendor/google/protobuf/src/Google/Protobuf/Internal/Message.php
@ignore

File

vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWire.php, line 167

Class

GPBWire

Namespace

Google\Protobuf\Internal

Code

public static function readSint32(&$input, &$value) {
    if (!$input->readVarint32($value)) {
        return false;
    }
    $value = GPBWire::zigZagDecode32($value);
    return true;
}
RSS feed
Powered by Drupal