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
    • Help Card
  • boost::urls::segments_ref::assign

boost::urls::segments_ref::assign

Assign segments

Synopses

Declared in <boost/url/segments_ref.hpp>

Assign segments

void
assign(std::initializer_list<core::string_view> init);

» more...

Assign segments

template<class FwdIt>
void
assign(
    FwdIt first,
    FwdIt last);

» more...

Parameters

Name

Description

init

The list of segments to assign.

first

The beginning of the range of segments to assign.

last

The end of the range of segments to assign.

Created with MrDocs