R wrapper for the ZeroCopyInputStream c++ class
This is a virtual class
pointer
:external pointer to the google::protobuf::io::ZeroCopyInputStream
object
signature(x="ZeroCopyInputStream")
: invokes a method
signature(object="ZeroCopyInputStream")
: Get a number of bytes from the stream as a raw vector.
signature(object="ZeroCopyInputStream")
: skip a number of bytes
signature(object="ZeroCopyInputStream")
: Backs up a number of bytes, so that the next call to Next
returns data again that was already returned by the last call to Next
.
signature(object="ZeroCopyInputStream")
: Returns the total number of bytes read since this object was created.
signature(object="ZeroCopyInputStream", size = "integer")
: read raw bytes from the stream
signature(object="ZeroCopyInputStream", size = "numeric")
: read raw bytes from the stream
signature(object="ZeroCopyInputStream", size = "integer")
: same as ReadRaw
but formats the result as a string
signature(object="ZeroCopyInputStream", size = "numeric")
: same as ReadRaw
but formats the result as a string
signature(object="ZeroCopyInputStream")
: Read an unsigned integer with Varint encoding, truncating to 32 bits.
signature(object="ZeroCopyInputStream")
: Read a 32-bit little-endian integer.
signature(object="ZeroCopyInputStream")
: Read a 64-bit little-endian integer. In R the value is stored as a double
which looses some precision (no other way)
signature(object="ZeroCopyInputStream")
: Read a 64-bit integer with varint encoding. In R the value is stored as a double
which looses some precision (no other way)
Romain Francois <francoisromain@free.fr>
The google::protobuf::io::ZeroCopyInputStream
C++ class.
TODO: add classes that extend