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 064f557086.
PrevUpHomeNext
grammar::ref (2 of 2 overloads)

Return a reference to a character set.

Synopsis

Defined in header <boost/url/grammar/charset.hpp>

template<
    class CharSet>
constexpr implementation-defined
ref(
    CharSet const& cs);
Description

This function returns a character set which references the specified object. This is used to reduce the number of bytes of storage (sizeof) required by a combinator when it stores a copy of the object.

Ownership of the object is not transferred; the caller is responsible for ensuring the lifetime of the object is extended until it is no longer referenced. For best results, ref should only be used with compile-time constants.

Convenience header <boost/url/grammar.hpp>


PrevUpHomeNext