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 a snapshot of the master branch, built from commit c6a8213e9b.
PrevUpHomeNext
static_resource::static_resource

Constructor.

static_resource(
    unsigned char* buffer,
    std::size_t size);
  » more...

static_resource(
    std::byte* buffer,
    std::size_t size);
  » more...

template<
    std::size_t N>
explicit
static_resource(
    unsigned char(&) buffer [N]);
  » more...

template<
    std::size_t N>
explicit
static_resource(
    std::byte(&) buffer [N]);
  » more...

Copy constructor (deleted)

static_resource(
    static_resource const&) = delete;
  » more...

PrevUpHomeNext