putArrayInt8 overloads

Synopses

Declared in <bslx_marshallingutil.h>

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

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

Same as the preceding overload for const signed char *values.

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

Same as the preceding overload for const unsigned char *values.

static
void
putArrayInt8(
    char* buffer,
    unsigned char const* values,
    int 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