[#boost-urls-segments_ref-insert-050] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/segments_ref.adoc[segments_ref]::insert :relfileprefix: ../../../ :mrdocs: Insert segments == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/segments_ref.hpp#L376[boost/url/segments_ref.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_base/iterator.adoc[iterator] insert( xref:boost/urls/segments_base/iterator.adoc[iterator] before, core::string_view s); ---- == Description This function inserts a segment before the specified position. Reserved characters in the segment are automatically escaped. All iterators that are equal to `before` or come after are invalidated. === Complexity Linear in `s.size() + this‐>url().encoded_resource().size()`. === Exception Safety Strong guarantee. Calls to allocate may throw. == Return Value An iterator to the inserted segment. == Parameters |=== | Name | Description | *before* | An iterator before which the segment is inserted. This may be equal to `end()`. | *s* | The segment to insert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#