bool Url::isEmpty()

in sdk/src/http/Url.cc [155:165]


bool Url::isEmpty() const
{
    return scheme_.empty()
        && userName_.empty()
        && password_.empty()
        && host_.empty()
        && path_.empty()
        && (port_ == INVALID_PORT)
        && query_.empty()
        && fragment_.empty();
}