[#boost-urls-segments_ref-insert-0a] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/segments_ref.adoc[segments_ref]::insert :relfileprefix: ../../../ :mrdocs: Insert segments == Synopses Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/segments_ref.hpp#L382[boost/url/segments_ref.hpp]>` Insert segments [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_base.adoc[iterator] xref:boost/urls/segments_ref/insert-050.adoc[insert]( xref:boost/urls/segments_base.adoc[iterator] before, core::string_view s); ---- [.small]#xref:boost/urls/segments_ref/insert-050.adoc[_» more..._]# Insert segments [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_base.adoc[iterator] xref:boost/urls/segments_ref/insert-09.adoc[insert]( xref:boost/urls/segments_base.adoc[iterator] before, std::initializer_list<core::string_view> init); ---- [.small]#xref:boost/urls/segments_ref/insert-09.adoc[_» more..._]# Insert segments [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class FwdIt> xref:boost/urls/segments_base.adoc[iterator] xref:boost/urls/segments_ref/insert-07.adoc[insert]( xref:boost/urls/segments_base.adoc[iterator] before, FwdIt first, FwdIt last); ---- [.small]#xref:boost/urls/segments_ref/insert-07.adoc[_» more..._]# == Return Value * An iterator to the inserted segment. * An iterator to the first element inserted, or `before` if `init.size() == 0`. * An iterator to the first segment inserted, or `before` if `init.empty()`. == Parameters [cols=2] |=== | Name | Description | *before* | An iterator before which the segment is inserted. This may be equal to `end()`. | *s* | The segment to insert. | *init* | The list of segments to insert. | *first* | The beginning of the range of segments to insert. | *last* | The end of the range of segments to insert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#