Boost.URL

    • Quick Look
    • URLs
      • Parsing
      • Containers
      • Segments
      • Params
      • Normalization
      • String Token
      • Percent Encoding
      • Formatting
    • Customization
      • Parse Rules
      • Character Sets
      • Compound Rules
      • Ranges
      • RFC 3986
    • Examples
      • QR Code
      • Finicky
      • mailto URLs
      • Magnet Link
      • File Router
      • Router
      • Sanitizing URLs
    • Reference
      • Index
      • Concepts
        • CharSet
        • Rule
        • StringToken
      • Help Card

boost::urls::param::operator=

Assignment

Synopsis

param&
operator=(param&& other) noexcept;
constexpr
param&
operator=(param const&) = default;
param&
operator=(param_view const& other);
param&
operator=(param_pct_view const& other);

Description

Upon assignment, this acquires ownership of the members of other via move assignment. The moved from object is as if default constructed.

Constant.

Throws nothing.

Parameters

Name Description

other

The parameter to copy.