Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

buffer_copy (2 of 30 overloads)

Copies bytes from a source buffer to a target buffer.

std::size_t buffer_copy(
    const mutable_buffer & target,
    const const_buffers_1 & source);
Parameters

target

A modifiable buffer representing the memory region to which the bytes will be copied.

source

A non-modifiable buffer representing the memory region from which the bytes will be copied.

Return Value

The number of bytes copied.

Remarks

The number of bytes copied is the lesser of:


PrevUpHomeNext