:relfileprefix: ../../../ [#boost-urls-decode_view-front] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/decode_view.adoc[pass:[decode_view]]::front Return the first character == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/decode_view/reference.adoc[reference] front() const noexcept; ---- == Description === Example [,cpp] ---- assert( decode_view( "Program%20Files" ).front() == 'P' ); ---- === Preconditions [,cpp] ---- not this->empty() ---- === Complexity Constant. === Exception Safety Throws nothing.