Store consecutive one‐byte integers from the specified values into the specified buffer.

Synopsis

Declared in <bslx_marshallingutil.h>

static
void
putArrayInt8(
    char* buffer,
    char const* values,
    int numValues);

Description

Load into the specified buffer the consecutive one‐byte, two's complement integers comprised of the one byte of each of the specified numValues leading entries in the specified values. The behavior is undefined unless buffer has sufficient capacity, values has sufficient contents, and 0 <= numValues.

Parameters

Name

Description

buffer

destination buffer

values

array of host‐order one‐byte integers to write

numValues

number of values to write

Created with MrDocs