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

Breadcrumb

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

function CodedOutputStream::writeLittleEndian64

File

vendor/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php, line 54

Class

CodedOutputStream

Namespace

Google\Protobuf\Internal

Code

public function writeLittleEndian64($value) {
    $bytes = str_repeat(chr(0), 8);
    $size = self::writeLittleEndian64ToArray($value, $bytes);
    return $this->writeRaw($bytes, $size);
}
RSS feed
Powered by Drupal