![]() |
Home | Libraries | People | FAQ | More |
(Inherited from url_base
)
Return the path as a container of segments.
segments_encoded_ref encoded_segments();
This function returns a bidirectional view of segments over the path. The returned view references the same underlying character buffer; ownership is not transferred. Strings returned when iterating the range may contain percent escapes. The container is modifiable; changes to the container are reflected in the underlying URL.
[link url.ref.boost__urls__url_base.url `url`] u( "http://example.com/path/to/file.txt" ); [link url.ref.boost__urls__url_base.segments_encoded_ref `segments_encoded_ref`] sv = u.encoded_segments();
Constant.
Throws nothing.
[link url.ref.boost__urls__static_url.path `path`] = [link url.ref.boost__urls__static_url.path `path`]-abempty ; begins with "/" or is [link url.ref.boost__urls__static_url.empty `empty`] / [link url.ref.boost__urls__static_url.path `path`]-absolute ; begins with "/" but not "//" / [link url.ref.boost__urls__static_url.path `path`]-noscheme ; begins with a non-colon segment / [link url.ref.boost__urls__static_url.path `path`]-rootless ; begins with a segment / [link url.ref.boost__urls__static_url.path `path`]-[link url.ref.boost__urls__static_url.empty `empty`] ; zero characters [link url.ref.boost__urls__static_url.path `path`]-abempty = *( "/" segment ) [link url.ref.boost__urls__static_url.path `path`]-absolute = "/" [ segment-nz *( "/" segment ) ] [link url.ref.boost__urls__static_url.path `path`]-noscheme = segment-nz-nc *( "/" segment ) [link url.ref.boost__urls__static_url.path `path`]-rootless = segment-nz *( "/" segment ) [link url.ref.boost__urls__static_url.path `path`]-[link url.ref.boost__urls__static_url.empty `empty`] = 0<pchar>
encoded_segments
, set_encoded_path
, set_path
, set_path_absolute
.