has_scheme

Return true a scheme is present

Synopsis

bool
has_scheme() const noexcept;

Declared in file <include/boost/url/url_view_base.hpp> on line 339

Defined in file <src/url_view_base.cpp> on line 105

Description

This function returns true if this contains a scheme.

Example

assert( url_view( "http://www.example.com" ).has_scheme() );

Complexity

Constant.

Exception Safety

Throws nothing.

BNF

URI             = scheme ":" hier-part [ "?" query ] [ "#" fragment ]

absolute-URI    = scheme ":" hier-part [ "?" query ]

scheme          = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )

Specification