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
value_ref::value_ref

Constructor.

value_ref(
    value_ref const&);
  » more...

value_ref(
    string_view s);
  » more...

template<
    class T>
value_ref(
    T const& t);
  » more...

template<
    class T>
value_ref(
    T&& t);
  » more...

value_ref(
    bool b);
  » more...

value_ref(
    std::initializer_list< value_ref > t);
  » more...

value_ref(
    signed char t);
  » more...

value_ref(
    short t);
  » more...

value_ref(
    int t);
  » more...

value_ref(
    long t);
  » more...

value_ref(
    long long t);
  » more...

value_ref(
    unsigned char t);
  » more...

value_ref(
    unsigned short t);
  » more...

value_ref(
    unsigned int t);
  » more...

value_ref(
    unsigned long t);
  » more...

value_ref(
    unsigned long long t);
  » more...

value_ref(
    float t);
  » more...

value_ref(
    double t);
  » more...

value_ref(
    std::nullptr_t);
  » more...

PrevUpHomeNext