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

Breadcrumb

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

function CodedInputStream::bytesUntilLimit

File

vendor/google/protobuf/src/Google/Protobuf/Internal/CodedInputStream.php, line 351

Class

CodedInputStream

Namespace

Google\Protobuf\Internal

Code

public function bytesUntilLimit() {
    if ($this->current_limit === PHP_INT_MAX) {
        return -1;
    }
    return $this->current_limit - $this->current;
}
RSS feed
Powered by Drupal