Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

const_buffer::const_buffer

Construct an empty buffer.

const_buffer();

Construct a buffer to represent a given memory range.

const_buffer(
    const void * data,
    std::size_t size);

Construct a non-modifiable buffer from a modifiable one.

const_buffer(
    const mutable_buffer & b);

PrevUpHomeNext