Home | Libraries | People | FAQ | More |
A view representing path segments in a URL.
Defined in header <boost/url/segments_view.hpp>
class segments_view : public segments_base
Name |
Description |
---|---|
A Bidirectional iterator to a path segment. |
|
The reference type. |
|
A signed integer type used to represent differences. |
|
A Bidirectional iterator to a path segment. |
|
The reference type. |
|
An unsigned integer type used to represent size. |
|
The value type. |
Name |
Description |
---|---|
Return the last segment. |
|
Return an iterator to the beginning. |
|
Return the referenced character buffer. |
|
Return true if there are no segments. |
|
Return an iterator to the end. |
|
Return the first segment. |
|
Returns true if this references an absolute path. |
|
Assignment. |
|
segments_view [constructor] |
Constructor. |
Return the number of segments. |
Name |
Description |
---|---|
Return the maximum number of characters possible. |
Objects of this type are used to interpret the path as a bidirectional view of segment strings. The view does not retain ownership of the elements and instead references the original character buffer. The caller is responsible for ensuring that the lifetime of the buffer extends until it is no longer referenced.
url_view u( "/path/to/file.txt" ); segments_view ps = u.segments(); assert( ps.buffer().data() == u.buffer().data() );
The strings produced when iterators are dereferenced belong to the iterator and become invalidated when that particular iterator is incremented, decremented, or destroyed. Any percent-escapes in returned strings are decoded first.
Changes to the underlying character buffer can invalidate iterators which reference it.
segments_encoded_view
, segments_encoded_ref
, segments_ref
.
Convenience header <boost/url.hpp>