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

Breadcrumb

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

function GPBWire::readFloat

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

File

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

Class

GPBWire

Namespace

Google\Protobuf\Internal

Code

public static function readFloat(&$input, &$value) {
    $data = null;
    if (!$input->readRaw(4, $data)) {
        return false;
    }
    $value = unpack('g', $data)[1];
    return true;
}
RSS feed
Powered by Drupal