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
      • Concepts
        • CharSet
        • Rule
        • StringToken
      • Help Card
  • boost::urls::segments_encoded_base::is_absolute

boost::urls::segments_encoded_base::is_absolute

Returns true if this references an absolute path.

Synopsis

Declared in <include/boost/url/segments_encoded_base.hpp>

bool
is_absolute() const noexcept;

Description

Absolute paths always start with a forward slash ('/').

assert( url_view( "/path/to/file.txt" ).encoded_segments().is_absolute() == true );

Constant.

Throws nothing.

Created with MrDocs