Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url::segments (2 of 2 overloads)

(Inherited from url_base)

Return the path as a container of segments.

Synopsis
segments_view
segments() const;
Description

This function returns a bidirectional view of strings over the path. The returned view references the same underlying character buffer; ownership is not transferred. Any percent-escapes in strings returned when iterating the view are decoded first.

Example
[link url.ref.boost__urls__url_view_base.segments_view `segments_view`] sv = [link url.ref.boost__urls__url_view_base.url_view `url_view`]( "/path/to/file.txt" ).segments();
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
[link url.ref.boost__urls__static_url.path `path`]          = [ "/" ] segment *( "/" segment )
Specification
See Also

is_path_absolute, encoded_path, encoded_segments. path, /root/project/libs/url/include/boost/url/url_base.hpp


PrevUpHomeNext