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

PrevUpHomeNext
flat_static_buffer_base::flat_static_buffer_base (1 of 2 overloads)

Constructor.

Synopsis
flat_static_buffer_base(
    void* p,
    std::size_t n);
Description

This creates a dynamic buffer using the provided storage area.

Parameters

Name

Description

p

A pointer to valid storage of at least n bytes.

n

The number of valid bytes pointed to by p.


PrevUpHomeNext