...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Return true if a userinfo is present.
bool has_userinfo() const;
This function returns true if this contains a userinfo.
assert( url_view( "http://jane%2Ddoe:pass@example.com" ).has_userinfo() );
Constant.
Throws nothing.
userinfo = user [ ":" [ password ] ] authority = [ userinfo "@" ] host [ ":" port ]
has_password
,
encoded_password
, encoded_user
, encoded_userinfo
, password
, user
, userinfo
.