:relfileprefix: ../../ [#boost-urls-segments_encoded_view] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::segments_encoded_view A view representing path segments in a URL == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- class segments_encoded_view : public xref:boost/urls/segments_encoded_base.adoc[segments_encoded_base]; ---- == Types [cols=2,separator=¦] |=== ¦Name ¦Description ¦xref:boost/urls/segments_encoded_base/const_iterator.adoc[`const_iterator`] ¦ xref:boost/urls/segments_encoded_base/iterator.adoc[iterator] ¦xref:boost/urls/segments_encoded_base/const_reference.adoc[`const_reference`] ¦ The reference type ¦xref:boost/urls/segments_encoded_base/difference_type.adoc[`difference_type`] ¦ A signed integer type used to represent differences. ¦xref:boost/urls/segments_encoded_base/iterator.adoc[`iterator`] ¦ ¦xref:boost/urls/segments_encoded_base/reference.adoc[`reference`] ¦ The reference type ¦xref:boost/urls/segments_encoded_base/size_type.adoc[`size_type`] ¦ An unsigned integer type used to represent size. ¦xref:boost/urls/segments_encoded_base/value_type.adoc[`value_type`] ¦ The value type |=== == Member Functions [cols=2,separator=¦] |=== ¦Name ¦Description ¦xref:boost/urls/segments_encoded_base/back.adoc[`back`] ¦ Return the last segment ¦xref:boost/urls/segments_encoded_base/begin.adoc[`begin`] ¦ Return an iterator to the beginning ¦xref:boost/urls/segments_encoded_base/buffer.adoc[`buffer`] ¦ Return the referenced character buffer. ¦xref:boost/urls/segments_encoded_base/empty.adoc[`empty`] ¦ Return true if there are no segments ¦xref:boost/urls/segments_encoded_base/end.adoc[`end`] ¦ Return an iterator to the end ¦xref:boost/urls/segments_encoded_base/front.adoc[`front`] ¦ Return the first segment ¦xref:boost/urls/segments_encoded_base/is_absolute.adoc[`is_absolute`] ¦ Returns true if this references an absolute path. ¦xref:boost/urls/segments_encoded_view/2conversion.adoc[`operator segments_view`] ¦ Conversion ¦xref:boost/urls/segments_encoded_view/operator_assign.adoc[`operator=`] ¦ Assignment ¦xref:boost/urls/segments_encoded_view/2constructor.adoc[`segments_encoded_view`] [.small]#[constructor]# ¦ Constructor ¦xref:boost/urls/segments_encoded_base/size.adoc[`size`] ¦ Return the number of segments |=== == Static Member Functions [cols=2,separator=¦] |=== ¦Name ¦Description ¦xref:boost/urls/segments_encoded_base/max_size.adoc[`max_size`] ¦ Return the maximum number of characters possible |=== == Friends [cols=2,separator=¦] |=== ¦Name ¦Description ¦xref:boost/urls/segments_encoded_view/08friend.adoc[`parse_path`] ¦ |=== == Description 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. === Example [,cpp] ---- url_view u( "/path/to/file.txt" ); segments_encoded_view ps = u.encoded_segments(); assert( ps.buffer().data() == u.buffer().data() ); ---- Strings produced when elements are returned have type xref:boost/urls/param_pct_view.adoc[param_pct_view] and represent encoded strings. Strings passed to member functions may contain percent escapes, and throw exceptions on invalid inputs. === Iterator Invalidation Changes to the underlying character buffer can invalidate iterators which reference it. == See Also xref:boost/urls/segments_view.adoc[segments_view] , xref:boost/urls/segments_encoded_ref.adoc[segments_encoded_ref] , xref:boost/urls/segments_ref.adoc[segments_ref] .