Store consecutive four-byte integers into the specified buffer.
Declared in <bslx_marshallingutil.h>
static
void
putArrayInt32(
char* buffer,
int const* values,
int numValues);
Load into the specified buffer the consecutive four-byte, two's complement integers (in network byte order) comprised of the least-significant four bytes of each of the specified numValues leading entries in the specified values (in host byte order). The behavior is undefined unless buffer has sufficient capacity, values has sufficient contents, and 0 <= numValues.
| Name | Description |
|---|---|
| buffer | destination buffer in network byte order |
| values | array of host-order four-byte integers to write |
| numValues | number of values to write |