[#8B0487D9FBD591BF3D4E4663ECA58B192C9CE2C0]

Function url_view_base:: has_scheme

Return true a scheme is present

Synopsis

            bool
has_scheme() const noexcept;
        

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

  • 3.1. Scheme (rfc3986)